【发布时间】:2020-08-30 18:21:28
【问题描述】:
如何在 Mapbox 中使用有关此路径的信息创建可点击的路径?我有来自 GEOJsoN 的足迹,例如:
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "LineString",
"coordinates": [
[12.691956, 52.943673],
[12.727661, 52.912215],
[12.757874, 52.88902],
[12.7771, 52.859181],
[12.799072, 52.822683],
[12.801819, 52.784492]
]
}
}
]
}
在 mapbox.com 我读到它可以使用标记,但只有当我有 2 个不同的 API(路径和标记)时
【问题讨论】: