Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions libjava/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

Mapbox welcomes participation and contributions from everyone.

### v1.3.2

* Geocoding: added poi.landmark type


### v1.3.1

* GeoJson: Feature properties are now properly serialized and raw array tests have been added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,11 @@ public final class GeocodingCriteria {
*/
public static final String TYPE_POI = "poi";


/**
* Filter results by POI landmark subtype.
*
* @since 1.3.2
*/
public static final String TYPE_POI_LANDMARK = "poi.landmark";
}
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public Builder setProximity(Position position) {

/**
* Filter results by one or more type. Options are country, region, postcode, place,
* locality, neighborhood, address, poi. Multiple options can be comma-separated.
* locality, neighborhood, address, poi, poi.landmark. Multiple options can be comma-separated.
*
* @param geocodingType String filtering the geocoder result types.
* @return Builder
Expand All @@ -290,7 +290,7 @@ public Builder setGeocodingType(String geocodingType) {

/**
* Filter results by one or more type. Options are country, region, postcode, place,
* locality, neighborhood, address, poi. Multiple options can be comma-separated.
* locality, neighborhood, address, poi, poi.landmark. Multiple options can be comma-separated.
*
* @param geocodingType String array filtering the geocoder result types.
* @return Builder
Expand Down