Expose new s= URL parameter in MWMPoint.

This commit is contained in:
Keith Wansbrough 2015-11-12 23:33:38 +00:00
parent 86ecf22144
commit 977bb792cb
4 changed files with 25 additions and 3 deletions

View file

@ -38,7 +38,7 @@ You don't need any additional permissions in your AndroidManifest.xml to use
<ul>
<li><a href="lib/src/com/mapswithme/maps/api/MapsWithMeApi.java" title="MapsWithMeApi.java">com.mapswithme.maps.api.MapsWithMeApi</a> - static class with methods such as <code>showPointOnMap(Activity, double, double, String)</code> etc.</li>
<li><a href="lib/src/com/mapswithme/maps/api/MWMPoint.java" title="MWMPoint.java">com.mapswithme.maps.api.MWMPoint</a> - model of POI, includes lat, lon, name, and id data.</li>
<li><a href="lib/src/com/mapswithme/maps/api/MWMPoint.java" title="MWMPoint.java">com.mapswithme.maps.api.MWMPoint</a> - model of POI, includes lat, lon, name, id, and style data.</li>
<li><a href="lib/src/com/mapswithme/maps/api/MWMResponse.java" title="MWMResponse.java">com.mapswithme.maps.api.MWMResponse</a> - helps you to extract response from MapsWithMe by applying <code>MWMResponse.extractFromIntent(Intent)</code> to Intent. Contains MWMPoint data.</li>
</ul>

View file

@ -33,7 +33,7 @@ You don't need any additional permissions in your AndroidManifest.xml to use API
Core classes you will work with are:
* [com.mapswithme.maps.api.MapsWithMeApi][linkApiClass] - static class with methods such as `showPointOnMap(Activity, double, double, String)` etc.
* [com.mapswithme.maps.api.MWMPoint][linkPointClass] - model of POI, includes lat, lon, name, and id data.
* [com.mapswithme.maps.api.MWMPoint][linkPointClass] - model of POI, includes lat, lon, name, id, and style data.
* [com.mapswithme.maps.api.MWMResponse][linkRespClass] - helps you to extract response from MapsWithMe by applying `MWMResponse.extractFromIntent(Intent)` to Intent. Contains MWMPoint data.
### Show Points on the Map

View file

@ -37,6 +37,7 @@ public final class MWMPoint implements Serializable
final private double mLon;
final private String mName;
private String mId;
private String mStyle;
public MWMPoint(double lat, double lon, String name)
{
@ -51,10 +52,20 @@ public final class MWMPoint implements Serializable
this.mId = id;
}
public MWMPoint(double lat, double lon, String name, String id, String style)
{
this.mLat = lat;
this.mLon = lon;
this.mName = name;
this.mId = id;
this.mStyle = style;
}
public double getLat() { return mLat; }
public double getLon() { return mLon; }
public String getName() { return mName; }
public String getId() { return mId; }
public String getStyle() { return mStyle; }
/**
* Sets string ID for this point. Internally it is not used to distinguish point,
@ -63,10 +74,20 @@ public final class MWMPoint implements Serializable
*/
public void setId(String id) { mId = id; }
/**
* Sets the style (appearance) for this point. Null, empty-string or unrecognized appears as a
* violet circle. Styles known to MAPS.ME appear with the appropriate symbol. At the time of
* writing, supported styles are "placemark-red", "placemark-blue", "placemark-purple",
* "placemark-yellow", "placemark-pink", "placemark-brown", "placemark-green", "placemark-orange",
* all of which are displayed as a small flag of the indicated colour.
* @param style
*/
public void setStyle(String style) { mId = style; }
@Override
public String toString()
{
return "MWMPoint [lat=" + mLat + ", lon=" + mLon + ", name=" + mName + ", id=" + mId + "]";
return "MWMPoint [lat=" + mLat + ", lon=" + mLon + ", name=" + mName + ", id=" + mId + ", style=" + mStyle + "]";
}
@Override

View file

@ -137,6 +137,7 @@ public class MwmRequest
appendIfNotNull(urlBuilder, "n", point.getName());
appendIfNotNull(urlBuilder, "id", point.getId());
appendIfNotNull(urlBuilder, "s", point.getStyle());
}
}