💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
``` // pages/index/index.js Page({ /** * 页面的初始数据 */ data: { latitude:30.537094, longitude:114.333649, //设置圆圈 circles:[{ latitude: 30.537094, longitude: 114.333649, fillColor:"#8DE25055", radius:30 }], //设置红点图标 markers: [{ iconPath: "/images/icon/map.png", latitude: 30.537094, longitude: 114.333649, width: 30, height: 30, title:"极客营科技", id:0, label:{ content:"极客营科技有限公司", color:"#EE5E7B", borderWidth:1, borderColor:"#EE5E78", borderRadius:5, padding:5, }, //设置标签 callout:{ content:"极客营科技有限公司", color:"#EE5E7B", borderWidth:1, borderColor:"#EE5E78", borderRadius:5, padding:5, } //设置弹框 }], }, marker(){ } }) ```