叶状图中的变化标记

2024-05-15 21:50:21 发布

您现在位置:Python中文网/ 问答频道 /正文

我有一个脚本,可以在一张地图上通过叶面绘制多个点。有办法改变标记的形状和颜色吗?

不管是通过python代码还是通过html file完成。

import folium
import json


map_osm = folium.Map(location=[37.7622, -122.4356], zoom_start=13)

geojson = {
    "type": "Feature",
    "geometry": {
        "type": "MultiPoint",
        "coordinates": [[-122.42436302145, 37.8004143219856], [-122.42699532676599, 37.80087263276921]],
    },
    "properties": {"prop0": "value0"}
}

map_osm.geo_json(geo_str=json.dumps(geojson))
map_osm.create_map(path='osm.html')

enter image description here


Tags: 标记import脚本jsonmaphtmlosmgeojson
3条回答

你可以试试这样的:

for i in range(0,len(data)):
folium.Marker([data['lat'][i], data['long'][i]],
          #Make color/style changes here
          icon = folium.Icon(color='green'),
          ).add_to(map_1)

您可能会发现单独创建标记比首先构建GeoJSON对象更容易。这样就可以很容易地为它们设置样式,例如:

map_1 = folium.Map(location=[45.372, -121.6972], zoom_start=12,tiles='Stamen Terrain')
map_1.simple_marker([45.3288, -121.6625], popup='Mt. Hood Meadows',marker_icon='cloud')

下面是我用点绘制的。我实际上是想把一个notebook of examples (adding color, popup, etc)放在一起,尽管我还在解决这些问题。

import folium
import pandas as pd

#create a map
this_map = folium.Map(prefer_canvas=True)

def plotDot(point):
    '''input: series that contains a numeric named latitude and a numeric named longitude
    this function creates a CircleMarker and adds it to your this_map'''
    folium.CircleMarker(location=[point.latitude, point.longitude],
                        radius=2,
                        weight=0).add_to(this_map)

#use df.apply(,axis=1) to "iterate" through every row in your dataframe
data.apply(plotDot, axis = 1)


#Set the zoom to the maximum possible
this_map.fit_bounds(this_map.get_bounds())

#Save the map to an HTML file
this_map.save('html_map_output/simple_dot_plot.html')

this_map

您也可以使用polygon markers that this guy shows off

相关问题 更多 >