如何通过网络表单使 mapbox 地图指向特定方向?
How can I made a mapbox map go to a specific direction through a web form?
我需要通过允许用户输入如下地址的 Web 表单执行以下操作:
123 街,佛罗里达州迈阿密。并且 mapbox 地图必须指向那个特定的方向。
我该怎么做?
该网站正在使用 php。
你可以看看mapbox-gl-geocoder插件。它使用 Mapbox 地理编码 API 查找地址的地理位置,然后相应地更新地图。
如果您想要前往给定地址的行车路线,请查看 mapbox-gl-directions。
根据您的应用要求,您可以调用 Geocoding API directly: it will give you a geolocation match for the specified address and then you can update the map. You can try the Geocoding functionality in the API playground。
我需要通过允许用户输入如下地址的 Web 表单执行以下操作:
123 街,佛罗里达州迈阿密。并且 mapbox 地图必须指向那个特定的方向。
我该怎么做?
该网站正在使用 php。
你可以看看mapbox-gl-geocoder插件。它使用 Mapbox 地理编码 API 查找地址的地理位置,然后相应地更新地图。
如果您想要前往给定地址的行车路线,请查看 mapbox-gl-directions。
根据您的应用要求,您可以调用 Geocoding API directly: it will give you a geolocation match for the specified address and then you can update the map. You can try the Geocoding functionality in the API playground。