當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript leaflet.circle函數代碼示例

本文整理匯總了TypeScript中leaflet.circle函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript circle函數的具體用法?TypeScript circle怎麽用?TypeScript circle使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了circle函數的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: function

  pointToLayer: function(feature, latlng) {
    if (!feature || !feature.properties) {
      return;
    }

    const properties = feature.properties;
    if (properties.radius) {
      // create a circle, with radius = properties.radius
      return L.circle(latlng, properties);
    } else if (
      properties.icon &&
      properties.icon.toUpperCase() === 'EPICENTER'
    ) {
      // create an epicenter marker
      return new EpicenterOverlay({
        properties: {
          latitude: latlng.lat,
          longitude: latlng.lng
        }
      });
    } else {
      // display an orange circle marker
      const defaultOptions = {
        color: '#000',
        fillColor: '#ff7800',
        fillOpacity: 0.8,
        opacity: 1,
        radius: 8,
        weight: 1
      };
      return L.circleMarker(latlng, defaultOptions);
    }
  },
開發者ID:ehunter-usgs,項目名稱:earthquake-eventpages,代碼行數:33,代碼來源:shake-alert-overlay.ts

示例2:

        quakes.subscribe(quake => {

            const coords = quake["geometry"].coordinates;
            const size = quake["properties"].mag * 10000;

            const circle = L.circle([coords[1], coords[0]], size)
                .addTo(map);

            quakeLayer.addLayer(circle);
            codeLayers[quake["id"]] = quakeLayer.getLayerId(circle);
        });
開發者ID:vasiliyutkin,項目名稱:earthshakes,代碼行數:11,代碼來源:index.ts

示例3: loadMap

  loadMap() {
    this.map = Leaflet
      .map("map")
      .setView(this.latLng, 13)
      .on("click", this.onMapClicked.bind(this))

    Leaflet.tileLayer("http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png")
      .addTo(this.map);

    this.marker = Leaflet
      .marker(this.latLng, { draggable: true })
      .on("dragend", this.onMarkerPositionChanged.bind(this))
      .addTo(this.map);

    this.circle = Leaflet.circle(this.latLng, this.radius).addTo(this.map);
  }
開發者ID:lhammond,項目名稱:ionic2-geofence,代碼行數:16,代碼來源:geofence-details.ts


注:本文中的leaflet.circle函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。