目录
绘制圈选区域并拿到这个选区内的feature(通过坐标是否在几何内,准确)
整体封装openlayers(最新)
// 转换为web merctor投影
var destinationPro = "EPSG:3857";
// 地理原始投影
var sourcePro = 'EPSG:4326';
var centerPoint = [121.55, 29.88];
var defaultZoom = 14;
// 地图函数对象
var mapObj = {
geojsonFormat: new ol.format.GeoJSON({
dataProjection: sourcePro,
featureProjection: destinationPro
}),
overlay: new ol.Overlay({
id: 'popup',
element: $('#station-popup').get(0),
autoPan: true, // 弹窗全部显示在地图中
positioning: 'center-center',
autoPanAnimation: {
duration: 250
}
}),
// 初始化地图
initMap: function