Coding standards
Security in ResourceSpace
Developer reference
Database
Action functions
Admin functions
Ajax functions
Annotation functions
API functions
Collections functions
Comment functions
Config functions
CSV export functions
Dash functions
Debug functions
Encryption functions
Facial recognition functions
File functions
General functions
Language functions
Log functions
Login functions
Message functions
Migration functions
Node functions
PDF functions
Plugin functions
Render functions
Reporting functions
Request functions
Research functions
Slideshow functions
Theme permission functions
User functions
Video functions
Database functions
Metadata functions
Resource functions
Search functions
Map functions
Job functions
Tab functions
Test functions

leaflet_coordinate_check()

Description

Validates geolocation coordinates to ensure they are numeric and within acceptable bounds.

Parameters

ColumnTypeDefaultDescription
$coordinate mixed The coordinate value to check.
$type string The type of coordinate ('latitude' or 'longitude').

Return

bool True if the coordinate is valid; otherwise, false.

Location

include/map_functions.php lines 537 to 556

Definition

 
function leaflet_coordinate_check($coordinate$type)
    {
    
$check false;
    if (!
is_numeric($coordinate))
        {
        return 
false;
        }

    if (
$type == 'latitude' && $coordinate >= -20037508.34 && $coordinate <= 20037508.34)
        {
        
$check true;
        }

    if (
$type == 'longitude' && $coordinate >= -20037508.34 && $coordinate <= 20037508.34)
        {
        
$check true;
        }

    return 
$check;
    }

This article was last updated 17th November 2024 15:35 Europe/London time based on the source file dated 7th November 2024 17:40 Europe/London time.