1.2.1 • Published 3 days ago

@ido-team/map v1.2.1

Weekly downloads
-
License
-
Repository
-
Last release
3 days ago

地图 api 说明

地图配置项示例

IdoMap.mapOptions = {
  lat: 31.936722,
  lng: 120.050611,
  zoom: 11,
  layer: [
    {
      url: "http://t1.tianditu.gov.cn/DataServer?T=vec_w&X={x}&Y={y}&L={z}&tk=key",
      Subdomains: ["0", "1", "2", "3"],
    },
  ],
};

地图配置项详细

lat: number;
lng: number;
CRS?: "4490";
layer?: {
    url: string;
    Subdomains?: string[];
    maxZoom?: number;
    minZoom?: number;
    errorTileUrl?: string;
    attribution?: string;
  }[];
attribution?: string;

初始化

const mapInstance = new IdoMap("divId");

方法

创建点位 createMarkers

const collections = mapInstance.createMarkers([
  {
    id: "1", //唯一标识,可根据数据对比进行局部点位更新
    lat: "31.936722", //纬度
    lng: "120.050611", //经度,
    iconAnchor: [12, 0],
    className: "leaflet-div-icon",
    html: "XXXX公司",
    popupHtml:
      '<div style="background: #ffffff;"><a href=javascript:alert("当前企业:${obj.html}")>${obj.html}</a></div>',
    enterprise_id: "aaaa",
  },
  {
    id: "3", //唯一标识,可根据数据对比进行局部点位更新
    clickEvent: "alert('当前企业id:${obj.enterprise_id}')", //点击事件
    lat: "31.936722", //纬度
    lng: "120.050611", //经度,
    enterprise_id: "12345678",
  },
  {
    lat: "31.906707", //纬度
    lng: "120.151291", //经度,
    popupHtml: '<div style="background: #ffffff;">222</div>',
  },
]);

通过 geojson 生成图层/集合 createByGeoJson

const geoLayer = mapInstance.createByGeoJson(lineString, {
  style: { color: "red", weight: 1, dashArray: 3 },
  popupHtml: "多边形",
  enterprise_id: "2222",
  clickEvent: "alert('当前企业id:${obj.enterprise_id}')", //点击事件
});

创建图层 createLayer

const layer = mapInstance.createLayer(
  {
    layerType: "special_enterprise",
    collections
  }
);

为地图/图层添加图层/集合 addLayer

mapInstance.addLayer(layer);
或
mapInstance.addLayer(geoLayer,layer);
1.2.1

3 days ago

1.2.0

4 days ago

1.1.99

14 days ago

1.1.98

1 month ago

1.1.97

1 month ago

1.1.96

2 months ago

1.1.95

2 months ago

1.1.94

2 months ago

1.1.93

2 months ago

1.1.92

2 months ago

1.1.91

2 months ago

1.1.90

3 months ago

1.1.89

3 months ago

1.1.88

3 months ago

1.1.87

3 months ago

1.1.86

3 months ago

1.1.85

3 months ago

1.1.84

4 months ago

1.1.81

5 months ago

1.1.83

5 months ago

1.1.82

5 months ago

1.1.80

5 months ago

1.1.79

5 months ago

1.1.78

5 months ago

1.1.77

5 months ago

1.1.76

5 months ago

1.1.29

10 months ago

1.1.28

10 months ago

1.1.70

5 months ago

1.1.74

5 months ago

1.1.30

10 months ago

1.1.73

5 months ago

1.1.72

5 months ago

1.1.71

5 months ago

1.1.34

10 months ago

1.1.33

10 months ago

1.1.32

10 months ago

1.1.75

5 months ago

1.1.31

10 months ago

1.1.38

9 months ago

1.1.37

9 months ago

1.1.36

9 months ago

1.1.39

9 months ago

1.1.41

9 months ago

1.1.40

9 months ago

1.1.45

7 months ago

1.1.44

7 months ago

1.1.43

8 months ago

1.1.42

9 months ago

1.1.49

7 months ago

1.1.48

7 months ago

1.1.47

7 months ago

1.1.46

7 months ago

1.1.52

6 months ago

1.1.50

6 months ago

1.1.56

6 months ago

1.1.55

6 months ago

1.1.54

6 months ago

1.1.53

6 months ago

1.1.16

10 months ago

1.1.59

6 months ago

1.1.15

10 months ago

1.1.58

6 months ago

1.1.57

6 months ago

1.1.19

10 months ago

1.1.18

10 months ago

1.1.17

10 months ago

1.1.63

6 months ago

1.1.62

6 months ago

1.1.61

6 months ago

1.1.60

6 months ago

1.1.67

5 months ago

1.1.23

10 months ago

1.1.66

6 months ago

1.1.22

10 months ago

1.1.65

6 months ago

1.1.21

10 months ago

1.1.64

6 months ago

1.1.20

10 months ago

1.1.27

10 months ago

1.1.26

10 months ago

1.1.69

5 months ago

1.1.25

10 months ago

1.1.68

5 months ago

1.1.24

10 months ago

1.1.14

10 months ago

1.1.9-alpha.1

10 months ago

1.1.3-alpha.1

10 months ago

1.1.8-alpha.1

10 months ago

1.1.7-alpha.1

10 months ago

1.1.5-alpha.1

10 months ago

1.1.6-alpha.1

10 months ago

1.1.12

10 months ago

1.1.11

10 months ago

1.1.10

10 months ago

1.1.2-alpha.1

10 months ago

1.1.13

10 months ago

1.1.1-alpha.1

11 months ago

1.1.0-alpha.1

11 months ago

1.0.0-alpha.1

11 months ago