On 22/10/2010 17:03, Hermann Karl wrote:
> Dear List,
>
> Is it possible to change the units of the length measure from [km] to
> [m] and the units of the area measure from [km2] to [m2] ?

read the manual entries for JavaScript settings

> Is it possible to move or delete a point of interest ?

You can modify the Refresh Map function by adding something like the 
following to you custom.js under your config directory:

$.extend(PM.Map,
{
     clearInfo: function() {
         PM.Map.zoomselected = '0';
         PM.setSessionVar('url_points', 'null', 'PM.Map.reloadMap(true)');
     }
});

This will remove *all* POI's. Selective deletion will require writing 
your own plugin.

You can also attach this script to another button instead, just give it 
then a different name because in the way listed, it overwrites the 
default script for map refresh. Maybe replace the 'true' with 'false' if 
you do not want to remove highlights on the map as well with this call.

armin

------------------------------------------------------------------------------
Nokia and AT&T present the 2010 Calling All Innovators-North America contest
Create new apps & games for the Nokia N8 for consumers in  U.S. and Canada
$10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing
Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store 
http://p.sf.net/sfu/nokia-dev2dev
_______________________________________________
pmapper-users mailing list
pmapper-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmapper-users

Reply via email to