从mapbox API获取geoJSON数据以确定多边形中的点

时间:2015-03-16 14:11:31

标签: javascript angularjs leaflet mapbox geojson

我最近按照本教程确定标记显示的点是否位于定义的多边形内:https://www.mapbox.com/mapbox.js/example/v1.0.0/point-in-polygon/

效果很好,但是他们用ajax拉入多边形geoJSON数据并将其应用到地图上。我已经建立了一个绘制了多边形区域的地图框图。我正在使用他们的API来显示我的地图。我现在需要访问geoJSON数据以确定某个点是否在某个区域内。如何通过API访问该数据?

以下是我如何拉入地图,geoJSON以及测试点是否位于geoJSON区域的函数:

//mapbox connection
var mapID = "<map-id>";
L.mapbox.accessToken = "<my-token>";

//init map
var map = L.mapbox.map("mapData", mapID, {
  attributionControl: false, 
  zoomControl: false
}).setView([53.799, -1.548], 13, {
  pan: { animate: true },
  zoom: { animate: true } 
});

//get geoJSON
var geoJson;
$http.get("https://a.tiles.mapbox.com/v4/" + mapID + "/features.json?access_token=" + L.mapbox.accessToken).success(function(data){
  geoJson = data;
});

//determine point in polygon
function determinePointInPolygon(){
  var coords = [-1.3, 5.2];
  var layer = leafletPip.pointInLayer(coords, L.geoJson(geoJson), true);
  if (!layer.length) //point not in polygon
  else //point is in polygon
}

2 个答案:

答案 0 :(得分:2)

集成功能已加载到L.mapbox.featureLayer中,L.mapbox.Map可作为map实例的成员使用。我们假设您的地图实例存储在名为map.featureLayer的引用中,您的图层将为// Make sure the featureLayer is ready map.featureLayer.on('ready', function (e) { // Loop over the features e.target.eachLayer(function (layer) { // Do your thing // here "layer" holds an instance of the marker/polygon/polyline // "layer.feature" holds the actual geojson feature }); });

mapid

以下是该概念的一个示例:http://plnkr.co/edit/D5IfRTLV0yXTqOmzNCYA?p=preview

如果您愿意,您还可以单独加载图块和功能,不使用var map = L.mapbox.map('mapbox', null, { 'center': [0, 0], 'zoom': 1 }); var tileLayer = L.mapbox.tileLayer('yourMapId').addTo(map); var featureLayer = L.mapbox.featureLayer('yourMapId').addTo(map); 实例化您的地图:

addTo

示例:http://plnkr.co/edit/9pYeRu6UmxuVL1TLzwPR?p=preview

然后你可以省略var featureLayer = L.mapbox.featureLayer('yourMapId'); // Make sure the featureLayer is ready featureLayer.on('ready', function (e) { // Loop over the features e.target.eachLayer(function (layer) { // Do your thing }); // Add layer to the map e.target.addTo(map); }); 方法,首先处理你的功能,然后将图层添加到地图中:

L.mapbox.FeatureLayer

什么对你最有效。但我差点忘了实际回答你的问题(虽然我认为你不再需要这个),可以使用getGeoJSON // Make sure the featureLayer is ready featureLayer.on('ready', function (e) { // Fetch you featurecollection var geojson = e.target.getGeoJSON(); }); 方法获得实际的GeoJSON特征集合(只有当图层准备就绪时):

{{1}}

答案 1 :(得分:0)

当您将JSON拉入时,您可以将JSON存储在其他位置:

首先在全局范围内定义一个您想要存储它的对象:

var geoJSON;

然后当你把它拉进来时,只需用数据

定义它
$.ajax({
    url: '/mapbox.js/assets/data/us-states.geojson',
    dataType: 'json',
    success: function load(d) {
        geoJSON = d; // THIS IS THE LINE I ADDED
        var states = L.geoJson(d).addTo(map);
        L.marker([38, -102], {
            icon: L.mapbox.marker.icon({
                'marker-color': '#f86767'
            }),
            draggable: true
        }).addTo(map)
        .on('dragend', function(e) {
            var layer = leafletPip.pointInLayer(this.getLatLng(), states, true);
            if (layer.length) {
              state.innerHTML = '<strong>' + layer[0].feature.properties.name + '</strong>';
            } else {
              state.innerHTML = '';
            }
        });
    }
});