Guest User

Untitled

a guest
Jul 21st, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. map.on('singleclick', function(evt) {
  2. document.getElementById('info').innerHTML = '';
  3. var viewResolution = /** @type {number} */ (view.getResolution());
  4. var url = wmsSource.getGetFeatureInfoUrl(
  5. evt.coordinate, viewResolution, 'EPSG:3857',
  6. {'INFO_FORMAT': 'text/html'});
  7. if (url) {
  8. document.getElementById('info').innerHTML =
  9. '<iframe seamless src="' + url + '"></iframe>';
  10. }
  11. });
  12.  
  13. wmsSources.forEach(function(source){
  14. var url = source.getGetFeatureInfoUrl(...);
  15. ...
  16. });
  17.  
  18. map.getLayers().forEach(...);
  19.  
  20. if (source instanceof ol.source.TileWMS) { ... }
Add Comment
Please, Sign In to add comment