#htmlcaption1 Go UP! Pure Javascript. No jQuery. No flash. #htmlcaption2 #htmlcaption3

Thursday, November 17, 2016

Belajar ESRI Leaflet JavaScript

1. Buat file Leaflet.html edit dengan kode dibawah ini

Code:
<html>
<head>
  <meta charset=utf-8 />
  <title>Basemap with labels</title>
  <meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />

  <!-- Load Leaflet from CDN-->
  <link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.1/dist/leaflet.css" />
  <script src="https://unpkg.com/leaflet@1.0.1/dist/leaflet-src.js"></script>

  <!-- Load Esri Leaflet from CDN -->
  <script src="https://unpkg.com/esri-leaflet@2.0.4"></script>

  <style>
    body { margin:0; padding:0; }
    #map { position: absolute; top:0; bottom:0; right:0; left:0; }
  </style>
</head>
<body>

<div id="map"></div>
<!-- Esri Basemap Imagery from ESRI -->
<script>
  var map = L.map('map').setView([-6.265966,106.70629], 17);

  L.esri.basemapLayer('Imagery').addTo(map);
  L.esri.basemapLayer('ImageryLabels').addTo(map);
</script>

</body>
</html>
2. Simpan dan buka pada browser

Hasil:


No comments: