收藏
回答

在创建地图时,marker如何使用数据中的经纬度?

点击信息列表中其中的一条信息,跳转到详情页,详情页中的地图,需要显示用户的发布的定位,数据库中有经纬度,那么如何使用数据库中的经纬度呢?问题展示如图:

wxml代码

<map class="map" longitude="{{recruit.location.longitude}}" latitude="{{recruit.location.latitude}}" show-location="true" scale="15" markers="{{markers}}"
  >
    {{recruit.location.name}}
  </map>
js代码:
 markers:[{
      longitude:"recruit.location.longitude",
      latitude:"recruit.location.latitude",
      iconPath:"../../images/location.png"
    }],
回答关注问题邀请回答
收藏
登录 后发表内容