View Project on GitHub
Initializes a new instance of the
Map class.
Namespace: GW2CSharp.V2.Unauthenticated.ContinentsAssembly: GW2CSharp (in GW2CSharp.dll) Version: 0.15.0.0 (0.15)
Syntaxpublic Map(
string name,
int min_level,
int max_level,
int default_floor,
List<List<int>> map_rect,
List<List<int>> continent_rect,
Dictionary<string, Poi> points_of_interest,
Dictionary<string, Objective> tasks,
IEnumerable<SkillChallenge> skill_challenges,
Dictionary<string, Sector> sectors
)
Parameters
- name
- Type: SystemString
The map name. - min_level
- Type: SystemInt32
The minimum level. - max_level
- Type: SystemInt32
The maximum level. - default_floor
- Type: SystemInt32
The default floor. - map_rect
- Type: System.Collections.GenericListListInt32
The dimensions of the map, given as the coordinates of the lower-left (SW) and upper-right (NE) corners. - continent_rect
- Type: System.Collections.GenericListListInt32
The dimensions of the map within the continent coordinate system, given as the coordinates of the upper-left (NW) and lower-right (SE) corners. - points_of_interest
- Type: System.Collections.GenericDictionaryString, Poi
The pois. - tasks
- Type: System.Collections.GenericDictionaryString, Objective
The objectives. - skill_challenges
- Type: System.Collections.GenericIEnumerableSkillChallenge
The skill challenges. - sectors
- Type: System.Collections.GenericDictionaryString, Sector
The sectors.
See Also