ThinkGeo.com    |     Documentation    |     Premium Support

Cancel latest feature: change messsage when nothing to cancel

Hi, I added a tool on my map to cancel latest feature with the action: "Map1.CancelLatestFeature();return false;"


But when there is nothing to cancel it says: "no features left here." !


Is it possible to customize this message ? for exemple I would like to translate it in french, or else disable the alert.


Thanks for your help.



Hi Gauiter,


For your reference, the following code should meet your requirement.


var oParser;

var OnMapCreated = function (map) {
    oParser=Map1.GetMapParser();
}

function cancelFeature(){
    if (oParser.editOverlay && oParser.editOverlay.features.length > 0) {
        Map1.CancelLatestFeature();
    }
    else {
        // Use your own logic
    }
}


Please let us know if you have further questions.


Regards,


Ivan



Yes ! works great ! 
  
 Once again thank you very much for your help.

Gautier, 
  
 You’re welcome. Have a good day. 
  
 Regards, 
  
 Ivan