我找到了Mapbox地理编码API的地址。然后,我要在地图上突出显示该建筑物。
它可以在本机上运行,但不能在网络上运行。我想在mapBox视图中找到renderFeatures的点。
类似这样的东西
pointInView = await map.getPointInView(foundAddress.center)
foundBuildings = await map.queryRenderedFeaturesAtPoint(pointInView)
如何将经纬度转换为mapbox-gl-js中的点
更新 发现一些有用的东西 How can I query the feature that's closest to the geocode result in Mapbox?
答案 0 :(得分:0)
找到了它,叫做项目(LngLat)
pointInView = await map.project(foundAddress.center)