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.
- Marián Kyral mkyral@email.cz
- Javier Sánchez Portero javiersanp@gmail.com (Spanish Cadastre Web Services module)
- GPL v2 or later
-
Shows data about building, addresses, streets, parcels and cadastral area from Czech RUIAN registry (https://wiki.openstreetmap.org/wiki/RUIAN)
-
Additional actions are available :
- Easy access the Spanish Cadastre Web Services (only Cadastre photographs at the moment).
- 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) {
}