本文整理汇总了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;未经允许,请勿转载。 |
请发表评论