query to overpass api in java … i want to specify the zoom in the query for the draw the response .. what i must add in my code for doing that?
问题 I work in a project in java .. i want to specify the zoom in the overpass query ? because i want to draw the response (xml file) ?? public static Document getNodesViaOverpass(String query) throws IOException, ParserConfigurationException, SAXException { String hostname = OVERPASS_API; URL osm = new URL(hostname); HttpURLConnection connection = (HttpURLConnection) osm.openConnection(); connection.setDoInput(true); connection.setDoOutput(true); connection.setRequestProperty("Content-Type",