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

pull/3109/head
jorgbrown 10 years ago
parent a121283f0f
commit d421801e17
  1. 2
      cpp/route_guide/route_guide_client.cc

@ -120,7 +120,7 @@ class RouteGuideClient {
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();
if (status.IsOk()) {

Loading…
Cancel
Save