Advertisement
Guest User

Untitled

a guest
Mar 6th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. var options = {
  2. projection: "EPSG:3857",
  3. center: new OpenLayers.LonLat(-12356463.476333, 5621521.4854095)
  4. };
  5.  
  6. var map = new OpenLayers.Map
  7. (
  8. 'map' , options
  9. );
  10.  
  11. var JanaSetaResolutions = [
  12. 3003.7333333333,
  13. 1501.8666666667,
  14. 750.93333333333,
  15. 375.46666666667,
  16. 187.73333333333,
  17. 93.866666666667,
  18. 46.933333333333,
  19. 23.466666666667,
  20. 11.733333333333,
  21. 5.8666666666667,
  22. 2.9333333333333,
  23. 1.4666666666667,
  24. 0.73333333333333,
  25. 0.36666666666667,
  26. 0.18333333333333 ];
  27.  
  28. var JanaSetaMap = new OpenLayers.Layer.WMS
  29. (
  30. 'Jana setas karte',
  31. 'http://wms.kartes.lv/MEDI/wgs/15/',
  32. {},
  33. {
  34. resolutions: JanaSetaResolutions,
  35. isBaseLayer: true
  36. }
  37. );
  38.  
  39. map.addLayer(JanaSetaMap);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement