我正在使用angular-google-maps构建一个非常直接的地图。我必须使用的数据使用与Angular Google Maps期望的id和lat / long属性不同的名称。 API文档引用idKey参数来指定备用id键,这对我来说很好。我无法找到传递参数的方法来指定备用lat / long键。有谁知道这是否可行?
JSON示例:
{
"myId":1,
"lat":33.00000,
"long":-82.00000
}
Angular Markup:
<ui-gmap-google-map center='map.center' zoom='map.zoom'>
<ui-gmap-markers models="myModel" idKey="'myId'" coords="'self'"
doCluster="'true'" fit="'true'" icon="'icon'">
</ui-gmap-markers>
</ui-gmap-google-map>
答案 0 :(得分:0)
这是不可能的。 ui-gmap专门针对纬度和经度。