Modify ↓
Opened 4 years ago
Last modified 4 years ago
#19336 new enhancement
Implement WMS server
Reported by: | simon04 | Owned by: | team |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | Core remotecontrol | Version: | |
Keywords: | wms server | Cc: |
Description
JOSM has the OSM data, JOSM has the rendering styles, JOSM already has an HTTP server. Thus, JOSM could implement a WMS server to render the current dataset in the current style in the requested bounds as image
/wms?SERVICE=WMS&REQUEST=GetCapabilities
/wms?SERVICE=WMS&REQUEST=GetMap
Attachments (1)
Note:
See TracTickets
for help on using tickets.
attachment:19336-poc.patch is a very very initial proof of concept.
It returns a static GetCapabilities files, and for GetMap renders the current map view. The crucial part to solve is to render exactly the requested ProjectionBounds; this is somewhat tricky since RenderingHelper and company is very focused around center and scale. Let's see...