| 1223 | } |
| 1224 | |
| 1225 | void Project::GetMapExtent(double& minx, double& miny, double& maxx, double& maxy) |
| 1226 | { |
| 1227 | wxLogMessage("Project::GetMapExtent()"); |
| 1228 | |
| 1229 | if (layer_proxy) { |
| 1230 | layer_proxy->GetExtent(minx, miny, maxx, maxy); |
| 1231 | } |
| 1232 | } |
| 1233 | |
| 1234 | void Project::GetCentroids(std::vector<double>& x, std::vector<double>& y) |
| 1235 | { |
no test coverage detected