我是靠谱客的博主 拼搏大船,最近开发中收集的这篇文章主要介绍微信小程序开发中怎样使用Map对象,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

微信小程序开发中怎样使用Map对象

 

//index.js
//获取应用实例
const app = getApp()

Page({
  data: {
    map_width: 380
    , map_height: 380
  }
  //show current position
  , onLoad: function (options) {
    console.log(options.schedule_id);
    var that = this;
    // 获取定位,并把位置标示出来
    that.setData({
      longitude: 113.324520
      , latitude: 23.099994
      , markers: [
        {
          id: 0
          , iconPath: "/images/position.png"
          , longitude: 113.324520
          , latitude: 23.099994
          , width: 30
          , height: 30
        }
      ]
    })
    //set the width and height
    // 动态设置map的宽和高
    wx.getSystemInfo({
      success: function (res) {
        console.log(res.windowWidth);
        that.setData({
          map_width: res.windowWidth
          , map_height: res.windowWidth
          , controls: [{
            id: 1,
            iconPath: '/images/location.png',
            position: {
         

最后

以上就是拼搏大船为你收集整理的微信小程序开发中怎样使用Map对象的全部内容,希望文章能够帮你解决微信小程序开发中怎样使用Map对象所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部