Drag projection math into C++

This commit is contained in:
Eric Fischer 2016-04-27 12:39:21 -07:00
parent 94db232a89
commit 575072bb2f

View File

@ -1,5 +1,8 @@
#include <math.h>
#include "projection.h"
extern "C" {
#include "projection.h"
}
// http://wiki.openstreetmap.org/wiki/Slippy_map_tilenames
void latlon2tile(double lat, double lon, int zoom, long long *x, long long *y) {