Skip to content

Instantly share code, notes, and snippets.

@kcarrier
Created August 13, 2014 12:51
Show Gist options
  • Save kcarrier/62fab6308295d6c1ff35 to your computer and use it in GitHub Desktop.
Save kcarrier/62fab6308295d6c1ff35 to your computer and use it in GitHub Desktop.
/* ConfigurableViewerJSAPI
* @version v1.0.1
* @author David Spriggs
* Project: https://github.com/DavidSpriggs/ConfigurableViewerJSAPI
* Copyright 2014. MIT licensed.
*/
define(["esri/map", "esri/dijit/BasemapGallery", "dojo/dom-construct"], function (Map, BasemapGallery, domConstruct) {
var map = new Map( ... );
var basemapGallery = new BasemapGallery({
showArcGISBasemaps: true,
basemapsGroup: { owner: "clermontcounty", title: "Base Maps Clermont County"},
map: map
}, domConstruct.create('div'));
});
//# sourceMappingURL=basemaps.js.map
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment