Leaflet笔记(10)Leaflet实现点击显示当前经纬度的效果
发布时间: 2017-03-03
所属分类: Leaflet学习笔记
上文《Leaflet笔记(9)最简单的事件响应》实现了最基本的click
响应,本文将上文的例子包装一下,实现一个点击显示一个Popup的效果。基本效果如图:
Leaflet监听点击事件并弹出Popup
var m = L.map('map-container').setView([36.52,120.31], 7);
var tileAddress = 'https://api.mapbox.com/styles/v1/yqcim/';
tileAddress += 'cizh1ma3400ez2so5x1anhuzo/tiles/256/{z}/{x}/{y}';
tileAddress += '?access_token=pk.eyJ1IjoieXFjaW0iLCJhIjoiY2l6ZmhnZjEx';
tileAddress += 'MDBhajJ4cGxnNGN5MnhpdCJ9.pcZtdfk8mSFboCdwqkvW6g';
var attribution = 'Map data © <a href="http://openstreetmap.org">';
attribution += 'OpenStreetMap</a> contributors, '
attribution += '<a href="http://creativecommons.org/licenses/by-sa/2.0/">';
attribution += 'CC-BY-SA</a>, ';
attribution += 'Imagery © <a href="http://mapbox.com">Mapbox</a>';
L.tileLayer(tileAddress, {
maxZoom: 18,
attribution: attribution,
id: 'mapbox.streets'
}).addTo(m);
// use event
var mypop = L.popup();
m.on('click', function(e) {
var content = '你临幸了这个点:<br>';
content += e.latlng.toString();
mypop.setLatLng(e.latlng)
.setContent(content)
.openOn(m);
});
这里监听事件和前文中的方法一致,使用on
方法对地图实例m
的click
事件做监听。在点击的时候创建一个Popup,然后将Popup
内容动态设置成点击位置的经纬度。
在线预览
相关阅读
声明
1.本文所分享的所有需要用户下载使用的内容(包括但不限于软件、数据、图片)来自于网络或者麻辣GIS粉丝自行分享,版权归该下载资源的合法拥有者所有,如有侵权请第一时间联系本站删除。
2.下载内容仅限个人学习使用,请切勿用作商用等其他用途,否则后果自负。
手机阅读
公众号关注
知识星球
手机阅读
最新GIS干货
私享圈子