<?php
    
// GeoMap Configuration File
    // Lines that start with a double slash are comments.

    // Each GeoMap in our database will need a unique ID number (0 to 255)
    
$CONFIG['MapID'] = 1;

    
// This is the map image to use
    
$CONFIG['MapImage'] = "map2.jpg";

    
// This is the name of a directory to use for caching data
    // It must be writable by the web gadget
    
$CONFIG['CacheDirectory'] = "cache";

    
// We want the gadget to calculate a suitable number of levels
    
$CONFIG['Levels'] = 0;

    
// Dots should range from this size (diameter in pixels)...
    
$CONFIG['MinSize'] = 10;

    
// To roughly this size (diameter in pixels)
    
$CONFIG['MaxSize'] = 40;

    
// Dots will be colored bright yellow
    
$CONFIG['Color'] = "FFFF00";

    
// The title for the interactive mode window
    
$CONFIG['Title'] = "http://helpdesk.islandnet.com";

    
// MySQL Database for tracking captcha codes, rate limiting, etc.
    // This is shared by all the gadgets I'll use
    
$CONFIG['MySQLHostname'] = "sql3.islandnet.com";
    
$CONFIG['MySQLUsername'] = "********";
    
$CONFIG['MySQLPassword'] = "********";
    
$CONFIG['MySQLDatabase'] = "********";
    
$CONFIG['MySQLTablePrefix'] = "";
?>