Web API Reference MapGuide Open Source

virtual void MgMap::Open MgResourceService resourceService,
CREFSTRING  mapName
[virtual]
 

Loads the map object from a session repository.

Remarks:
For more information, see Mapping Service .
.Net Syntax
virtual void Open(MgResourceService resourceService, string mapName);
Java Syntax
virtual void Open(MgResourceService resourceService, String mapName);
PHP Syntax
virtual void Open(MgResourceService resourceService, string mapName);

Parameters:
resourceService (MgResourceService) An MgResourceService that can be used to retrieve the map.
mapName (String/string) A string that specifies the name of the map. This is the name that was specified when Create was called to create the map object.
Returns:
Returns nothing.
Example (PHP)
    /// // Assuming the resource service has already been initialized
    /// $map = new MgMap();
    /// $map->Open($resourceService, 'Calgary');
    ///