A Pen by Raul Jimenez Ortega on CodePen.
Created
March 24, 2017 12:33
-
-
Save hhkaos/70a5bbb5c25757a8e53d1cb8d5d1956a to your computer and use it in GitHub Desktop.
Esri Leaflet
This file contains hidden or 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
<div id="map"></div> |
This file contains hidden or 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
var map = L.map('map').setView([40, -4], 6); | |
var layer = L.esri.Vector.basemap('Newspaper').addTo(map); | |
L.esri.featureLayer({ | |
url: '//services3.arcgis.com/FrTO2wfz5ckEyZcp/arcgis/rest/services/poblacion_capitales_provincia_2014/FeatureServer/0' | |
}).addTo(map); |
This file contains hidden or 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
<script src="//unpkg.com/[email protected]/dist/leaflet-src.js"></script> | |
<script src="//unpkg.com/[email protected]"></script> | |
<script src="//unpkg.com/esri-leaflet-vector"></script> |
This file contains hidden or 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
body { margin:0; padding:0; } | |
#map { position: absolute; top:0; bottom:0; right:0; left:0; } |
This file contains hidden or 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
<link href="//unpkg.com/[email protected]/dist/leaflet.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment