Guest User

Untitled

a guest
Jan 17th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. URL='http://localhost:8888/geoserver/wasa_assert/wms?SERVICE=WMS
  2. &version=1.1.0
  3. &request=GetFeatureInfo
  4. &layers=wasa_assert%3Atbl_water_supply_network,wasa_assert%3Atbl_tubewells,wasa_assert%3Atbl_ohr,wasa_assert%3Atbl_filtration_plant,wasa_assert%3Atbl_sewer_lines,wasa_assert%3Atbl_lift_station,wasa_assert%3Atbl_disposal_station,
  5. &styles=
  6. &bbox=' + BBOX + '
  7. &feature_count=1
  8. &width=' + WIDTH + '
  9. &height=' + HEIGHT + '
  10. &format=image%2Fpng
  11. &srs=EPSG%3A4326&
  12. &x=' + X + '
  13. &y=' + Y + '
  14. &info_format=text/javascript';
  15.  
  16. $.ajax({
  17. url: URL,
  18. crossDomain: true,
  19. dataType: "jsonp",
  20. success: parseResponse
  21. });
Add Comment
Please, Sign In to add comment