Initializes a new MgMap object given a map definition or tile set definition and a name for the map. This method is used for MapGuide Viewers or for offline map production.
.NET Syntax
void Create(MgResourceIdentifier mapDefinition, string mapName);
|
Java Syntax
void Create(MgResourceIdentifier mapDefinition, String mapName);
|
PHP Syntax
void Create(MgResourceIdentifier mapDefinition, string mapName);
|
- Parameters:
-
resource | An MgResourceIdentifier that specifies the location of the map definition in a resource repository. |
mapName | A string that specifies the name of the map. |
- Returns:
- Returns nothing.
Example (PHP)
$resourceID = new MgResourceIdentifier('Library://Calgary/Maps/Calgary.MapDefinition');
$map = new MgMap($site);
$map->Create($resourceID, 'Calgary');