OpenStreetMap (OSM):如何创建网站访问者可以添加地点的地图?

OpenStreetMap (OSM): How to create map where website visitors can add places?

我只需要一些链接,从哪里开始。我对 OSM 不是很熟悉,但我想创建一个带有世界地图的小网站,我网站的访问者可以在其中简单地添加带有描述的地点。我不知道从哪里开始。是否有任何预编码的 CMS 模板,如 Wordpress 或非 CMS 模板?

看看OpenLayers. There is a QuickStart Tutorial on how to add a map. If you want to add a Marker by a click on the map have a look at ClickHandlers (example can be seen here). What you would have to change is showing a field onClick, where the user can enter the description. What could be also from interest for you is the OpenLayers.Popup

如果要存储结果,您必须将描述和标记位置保存到数据库中,因此您的想法可能需要一些服务器端实现。