MCPcopy Create free account
hub / github.com/GeoDaCenter/geoda / GetMapLayer

Method GetMapLayer

Project.cpp:1821–1830  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1819}
1820
1821BackgroundMapLayer* Project::GetMapLayer(wxString map_name)
1822{
1823 BackgroundMapLayer* ml = NULL;
1824 if (bg_maps.find(map_name) != bg_maps.end()) {
1825 ml = bg_maps[map_name];
1826 } else if (fg_maps.find(map_name) != fg_maps.end()) {
1827 ml = fg_maps[map_name];
1828 }
1829 return ml;
1830}
1831
1832std::vector<wxString> Project::GetLayerNames()
1833{

Callers 3

OnMapLayerChoiceMethod · 0.45
UpdateFieldListMethod · 0.45
OnOKMethod · 0.45

Calls 1

findMethod · 0.80

Tested by

no test coverage detected