为Leaflet解析Foursquare API JSON

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为Leaflet解析Foursquare API JSON相关的知识,希望对你有一定的参考价值。

我正在尝试在Foursquare上提取的传单上映射JSON,但是我很难将它显示出来。

这是一个使用来自纽约开放数据的JSON的工作脚本。

fetch('complaintdata.json')
          .then(function (response) {
            // Read data as JSON
            return response.json();
          })
          .then(function (data) {
            // Create the Leaflet layer for the data
            var complaintData = L.geoJson(data, {
              pointToLayer: function (feature, latlng) {
                return L.marker(latlng, {icon: myIcon});
              },

              onEachFeature: function (feature, layer) {
                layer.on('click', function () {
                  // This function is called whenever a feature on the layer is clicked
                  console.log(layer.feature.properties);

                  // Render the template with all of the properties. Mustache ignores properties
                  // that aren't used in the template, so this is fine.
                  var sidebarContentArea = document.querySelector('.sidebar-content');
                  console.log(sidebarContentArea);
                  sidebarContentArea.innerhtml = Mustache.render(popupTemplate, layer.feature.properties);
                });
              }
            });

            // Add data to the map
            complaintData.addTo(map);

          });

这是使用谷歌地图的working example,但我很难将其转移到Leaflet。

这是JSON我想复制这个过程:

答案

首先需要获取数据然后迭代对象以构建标记和弹出内容。

您的geojson似乎不符合内置的L.geoJSON内置方法,因此迭代对象就像处理常规javascript对象一样。

也只是告诉你我用axios来获取响应。

import axios from "axios";

const url =
  "https://api.foursquare.com/v2/venues/search?near=London&categoryId=4bf58dd8d48988d14c941735&client_id=BOCHQZ4NF0D2NNFP2HM0INIKPUESPUX3RMRDUX02MPWIYSM2&client_secret=EDNX150PKLS4SMRHWL21Q0KLBAQXYQUQV5RAZI0HZSA1IYGG&v=20161111";

let geoJson = {};

axios.get(url).then(response => {
  geoJson = { ...response.data.response.venues };
  // console.log(geoJson);
  for (let key in geoJson) {
    let restaurant = geoJson[key];
    // console.log(restaurant);
    const { lat, lng, address } = restaurant.location;
    const { name } = restaurant;
    const popupContent = `<b>Name</b>: ${name} 
                          <br> <b>Address</b>: ${address}
                          <br> <b>Lat</b>: ${lat}, 
                          <br> <b>Lon</b>: ${lng} 
    `;
    L.marker([lat, lng], { icon: customMarker })
      .bindPopup(popupContent)
      .addTo(map);
  }
});

Demo

以上是关于为Leaflet解析Foursquare API JSON的主要内容,如果未能解决你的问题,请参考以下文章

解析foursquare为iPhone返回的json给出了无法识别的主角

foursquare API的IP地址范围是多少? [关闭]

如何对foursquare场所/搜索api返回的结果进行分页?

地理本地 google Maps API 业务结果foursquare 喜欢 iphone

如何使用foursquare api在foursquare上添加新的特价商品

Foursquare 场地搜索 API:如何找到最近的场地?