MapContext.includePoints

解释:缩放视野展示所有经纬度。

方法参数

Object object

object参数说明

属性名类型默认值必填说明
pointsArray要显示在可视区域内的坐标点列表。
paddingArray坐标点形成的矩形边缘到地图边缘的距离,单位像素。格式为[上,右,下,左],安卓上只能识别数组第一项,上下左右的 padding 一致。开发者工具暂不支持 padding 参数。
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

points返回参数说明

参数类型说明
longitudeString经度
latitudeString纬度

示例

在开发者工具中预览效果

扫码体验

MapContext.includePoints - 图1请使用百度APP扫码

图片示例

MapContext.includePoints - 图2

MapContext.includePoints - 图3

MapContext.includePoints - 图4

代码示例

  • 在 js 文件中
  1. Page({
  2. data: { },
  3. onReady() {
  4. this.mapContext = swan.createMapContext('myMap');
  5. },
  6. includePointsOne: function () {
  7. this.mapContext.includePoints({
  8. padding: [10],
  9. points: [{
  10. latitude: 23,
  11. longitude: 113.33,
  12. }, {
  13. latitude: 23,
  14. longitude: 113.3345211,
  15. }],
  16. success: function (res) {
  17. console.log(res)
  18. },
  19. fail: function (err) {
  20. }
  21. })
  22. },
  23. includePointsTwo: function() {
  24. this.mapContext.includePoints({
  25. padding: [10],
  26. points: [{
  27. latitude: 39.91,
  28. longitude: 106.40,
  29. }, {
  30. latitude: 41,
  31. longitude: 120,
  32. }],
  33. success: function (res) {
  34. console.log(res)
  35. },
  36. fail: function (err) {
  37. }
  38. })
  39. }
  40. });