Use (latitude, longitude), not (latitude, latitude)

This commit is contained in:
jorgbrown 2015-03-06 14:45:10 -08:00
parent 5c313475b9
commit a121283f0f
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ Now let's look at our streaming methods. If you've already read [Creating the se
std::cout << "Found feature called "
<< feature.name() << " at "
<< feature.location().latitude()/kCoordFactor_ << ", "
<< feature.location().latitude()/kCoordFactor_ << std::endl;
<< feature.location().longitude()/kCoordFactor_ << std::endl;
}
Status status = reader->Finish();
```