node-mapnik安装过程略,我们使用geojson为数据源,也可以使用其他的数据源,这里为了简单 直接上代码point.json { "type": "FeatureCollection", "features": [{ "type": "Feature", "geometry": { "type": "Point", "coordinates": [ 113.44397, 23.094416 ] } },...] } 编写mapnik.map 需要用到的tile.xml <Map srs="+init=epsg:4326"> <Style name="light"> <Rule> <!-- 点样式,默认黑色--> <PointSymbolizer file="../img/mass1.png" transform="scale(0.1)" allow-overlap="yes" ignore- placement="yes" /> </Rule> </Style> <Layer name="lightlayer" srs="+init=epsg:4326" > <StyleName>light</StyleName> </Layer> </Map> 瓦片需要用到x,y,z三个参数,使用mapnik自带类转换,也可以用自定义类转换来实现特殊瓦片 例如百度