au final j'ai fini par trouver moi même, aidé de chatGPT : name = "VISICOM (EN)"; maxZoom = 19; tileType = "png"; String getTileUrl(int zoom, int x, int y) { int invY = ((1 << zoom) - 1) - y + 1; //obligé de modifier l'axe Y sinon les tuiles s'affichent dans l'ordre inverse de bas en haut. return "https://tms0.visicom.ua/2.0.0/planet3/base/" + zoom + "/" + x + "/" + invY + ".png?lang=en"; } void addHeaders(java.net.HttpURLConnection conn) { conn.addRequestProperty("Referer", "https://maps.visicom.ua/");...
Merci beaucoup!
i tried to replicate from a mappy.cz one but when i enter this : name = "VISICOM (EN)"; maxZoom = 19; tileType = "png"; String getTileUrl( int zoom, int x, int y ) { return "https://maps.visicom.ua/c/"+x+","+y+","+zoom+"?lang=en"; } void addHeaders( java.net.HttpURLConnection conn) { conn.addRequestProperty("Referer","https://maps.visicom.ua/"); } it shows that in mobac (note the coordinates wich are not in DD format. it seems arguments are not properly extracted by the getTileUrl function.)
Hy! Is someone talented enough to develop a bsh that can extract maps from maps.visicom.ua (in english) here is the infos i have :
Quelqu'un peut-il tenter de faire un .bsh de la vue satellite/hybride du site HERE we go (ancien nokia maps) https://wego.here.com/p/here%3Acm%3Anamedplace%3A20061916?map=49.06222,1.43015,18 Merci d'avance!
LAN TileStorage
Hy! Mapy.cz used to work well, but since few days, it returns a 403 forbidden error on mobac. Do any of you have a working mapsource? I'm a huge fan of the mapy.cz rendering style.
Perhaps i can load a custom map with a mapsource and a local gpx file on an upper level? does that sounds doable to you? if yeah, can you point me out how? Thanks!