• JMap.Map.clearFlashingLocations

    Immediatly remove all flashed locations on the map that have been displayed using JMap.Map.flashLocation or JMap.Map.flashLocations

    Returns void

    Example

    // flash a location indefinetly
    JMap.Map.flashLocation({x:-74.178, y:46.0455})

    // clear all flashed locations after a timeout of 30 seconds
    setTimeout(()=>JMap.Map.clearFlashingLocations(), 30000)