Changes between Version 25 and Version 29 of Help/RemoteControlCommands
- Timestamp:
- (multiple changes)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Help/RemoteControlCommands
v25 v29 229 229 }, 230 230 "application": "JOSM RemoteControl", 231 "version": 16587 // JOSM version (since r16587) 231 "version": 16587, // JOSM version (since r16587) 232 "osm_server": "default" // indicates that the user is using the OSM server by "default" or "custom" (since r19416) 232 233 } 233 234 }}} … … 313 314 [http://localhost:8111/load_and_zoom?addtags=wikipedia%3Ade=%7Cmaxspeed=&select=way23071688,way23076176,way23076177,&left=13.739727546842&right=13.740890970188&top=51.049987191025&bottom=51.048466954325]. 314 315 316 === {{{export}}} === 317 ''(since JOSM r19425)'' 318 319 Returns the content of the active layer in the `.osm` format 320 {{{ 321 GET /export 322 }}} 323 324 If there is no active layer, or it is in the process of uploading changes, an empty response will be returned. 325 326 315 327 === Other commands === 316 328 Remotecontrol allows other plugins to add additional commands. The other registers a RequestHandler class and specifies a command to be handled by this class. The command syntax has to be defined by the other plugin. … … 326 338 ||= Plugin =||= **Command** =||= **Parameter** =||= **Required/ \\ Optional** =||= **Meaning** =|| 327 339 || Reverter || `revert_changeset` || || || Base command to revert a changeset || 328 || || || `id` || R || The changeset id to use (should match regex `[0-9]+`) || 340 || || || `id` || R || The changeset id to use (should match regex `[0-9]+`). Since version 36321, you can pass multiple ids separated by commas. || 329 341 || MapWithAI || `mapwithai` || || || Base command to download MapWithAI data || 330 342 || || || `max_obj` || O || Set the maximum number of objects the user can add per action from the MapWithAI layer. Should match regex `[0-9]+`. ||