/josm-pointInfo

PontInfo plugin for JOSM.

Primary LanguageJava


PointInfo plugin

This plugin shows all available information for clicked point from external database. Only Czech RUIAN and Spanish Cadastre Web Services modules are available at this moment.

Plugin could be easy extend to show another data source.

Author

Contributors

Websites

Licence:

  • GPL v2 or later

The RUIAN module

  • Shows data about building, addresses, streets, parcels and cadastral area from Czech RUIAN registry (https://wiki.openstreetmap.org/wiki/RUIAN)

  • Additional actions are available :

    • [] Open external site
    • [] Open external site (Katastr nemovitostí)
    • [] Copy tags to clipboard
    • [] Create an address point on position where was clicked
    • [] Create an address point on position defined in RUIAN
    • [] Report an issue with building

The Spanish Cadastre Web Services module

  • Easy access the Spanish Cadastre Web Services (only Cadastre photographs at the moment).

The interface:

  • Input is position, output html string that is shown on message.
  • Optionally you can define special links (file://...) that will be sent back to the module to the performAction method
    /**
     * Get a information about given position from external database.
     * @param pos Position on the map
     */
    public void prepareData(LatLon pos) {
    }

    /**
     * Return Html text representation
     * @return String htmlText
     */
    public String getHtml() {
    }

    /**
     * Perform given action
     *  e.g.: copy tags to clipboard
     * @param act Action to be performed
     */
    public void performAction(String act) {
    }