Specifically I'm looking for web mapping applications that include multiple layers and don't look like an ArcGIS clone -- perhaps something that looks like it was designed by a designer rather than a GIS tech :) This is a list of responses from Twitter, many of which do look GIS-y so more suggestions are welcome...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// original AMD version | |
define([ | |
'views/MapView', | |
'views/LocatorView' | |
], function( | |
MapView, LocatorView | |
) { | |
var node = document.getElementById('map-area'); | |
var node2 = document.getElementById('locator-area'); | |
var mapView = new MapView(null, node); |