@@ -19,7 +19,7 @@ public interface TilequeryService {
1919 /**
2020 * Constructs the HTTP request for the specified parameters.
2121 *
22- * @param tileSetIds tile set ID(s)
22+ * @param mapIds Map ID(s)
2323 * @param query query point
2424 * @param accessToken Mapbox access token
2525 * @param radius distance in meters to query for features
@@ -30,9 +30,9 @@ public interface TilequeryService {
3030 * @return A retrofit Call object
3131 * @since 3.5.0
3232 */
33- @ GET ("/v4/{tileSetIds }/tilequery/{query}.json" )
33+ @ GET ("/v4/{mapIds }/tilequery/{query}.json" )
3434 Call <FeatureCollection > getCall (
35- @ Path ("tileSetIds " ) String tileSetIds ,
35+ @ Path ("mapIds " ) String mapIds ,
3636 @ Path ("query" ) String query ,
3737 @ Query ("access_token" ) String accessToken ,
3838 @ Query ("radius" ) Integer radius ,
@@ -44,7 +44,7 @@ Call<FeatureCollection> getCall(
4444 /**
4545 * Constructs the HTTP request for the specified parameters.
4646 *
47- * @param tileSetIds tile set ID(s)
47+ * @param mapIds Map ID(s)
4848 * @param query query point
4949 * @param accessToken Mapbox access token
5050 * @param radius distance in meters to query for features
@@ -55,9 +55,9 @@ Call<FeatureCollection> getCall(
5555 * @return A retrofit Call object
5656 * @since 3.5.0
5757 */
58- @ GET ("/v4/{tileSetIds }/tilequery/{query}.json" )
58+ @ GET ("/v4/{mapIds }/tilequery/{query}.json" )
5959 Call <List <FeatureCollection >> getBatchCall (
60- @ Path ("tileSetIds " ) String tileSetIds ,
60+ @ Path ("mapIds " ) String mapIds ,
6161 @ Path ("query" ) String query ,
6262 @ Query ("access_token" ) String accessToken ,
6363 @ Query ("radius" ) Integer radius ,
0 commit comments