Reputation: 108
I'm new in Web mapping, I need web map editor. I found the iD Editor but I couldn't configure it to my own osm server! I don't know how is it working with API and Oauth.
How to configure the iD editor in my server without Oauth and how to create API?
Thanks.
Upvotes: 4
Views: 1475
Reputation: 15265
The openstreetmap-website documentation has a excellent tutorial of how to use an editor with the openstreetmap-api.
The example of the doc is using the Potlatch 2 editor, but you can do the same process for registering and configuring iD (id_key) and the website/Notes (oauth_key).
Do the following:
An example excerpt from application.yml:
# Default editor
default_editor: "id"
# OAuth consumer key for iD
id_key: "8lFmZPsagHV4l3rkAHq0hWY5vV3Ctl3oEFY1aXth"
To use the iD editor you need to use OAuth authorization, otherwise, you can use the JOSM editor which you can choose a base authentication.
Upvotes: 5
Reputation: 1
application.yml
has been refactored to settings.yml
but you will need to create a settings.local.yml
to override it configurations.
Upvotes: 0
Reputation: 36
# Default editor
default_editor: "id"
# OAuth consumer key for iD
oauth_key: "8lFmZPsagHV4l3rkAHq0hWY5vV3Ctl3oEFY1aXth"
to change:
# OAuth consumer key for iD
id_key: "8lFmZPsagHV4l3rkAHq0hWY5vV3Ctl3oEFY1aXth"
Upvotes: 2