NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum

Hello,

i trying to write some application in C++.

at this time I can handle download a map with correct center coordinate, using a url requests.

 QString path = "http://tile.openstreetmap.org/%1/%2/%3.png";
 m_url = QUrl(path.arg(zoom).arg(grab.x()).arg(grab.y()));
 QNetworkRequest request;
 request.setUrl(m_url);
 ...

I need: a) Download a clear map and be able to paint to it in right scale. (in this situation i have download a picture - i know a center coordinate, but draw some tracks in pixels of picture is bad solution with horrible accuracy)

b) Download a map with drawed gps tracks, which i send.

please can someone push me to the right direction? Thanks much.

asked 30 Oct '12, 16:53

Adam%20M's gravatar image

Adam M
26112
accept rate: 0%

Be the first one to answer this question!
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×535
×275
×235
×61
×10

question asked: 30 Oct '12, 16:53

question was seen: 4,408 times

last updated: 30 Oct '12, 16:53

NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum