Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <div id="map"></div>
  2. <input type="hidden" id="mapSubmit" />
  3. <script>
  4.   var map;
  5.   function initMap() {
  6.     // instantiator GreenValleyMap(mapDiv, hiddenField, params)
  7.     map = new GreenValleyMap(document.getElementById('map'),document.getElementById('mapSubmit'),{
  8.       "center": {"lat":50.965698,"lng":5.502443},
  9.       "zoom": 8,
  10.       "maxtags": 3,
  11.       "search": true,
  12.       "layers":[
  13.         GRB: "http://geoservices.informatievlaanderen.be/raadpleegdiensten/GRB-basiskaart/wms?request=GetCapabilities&service=WMS",
  14.         GRBGrijs:"http://geoservices.informatievlaanderen.be/raadpleegdiensten/GRB-basiskaart-grijs/wms?request=GetCapabilities&service=WMS"
  15.       ]
  16.     });
  17.   }
  18. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement