Removed references to Lite version as we have only one free Pro version now
This commit is contained in:
parent
d24046838b
commit
c2ddf4b238
2 changed files with 8 additions and 15 deletions
12
README.html
12
README.html
|
@ -2,13 +2,13 @@
|
|||
|
||||
<h2>Introduction</h2>
|
||||
|
||||
<p>NOTE: We have changed the name of our maps from MapsWithMe to maps.me, but left all references below unchanged.</p>
|
||||
<p>NOTE: We have changed the name of our maps from MapsWithMe to MAPS.ME, but left all references below unchanged.</p>
|
||||
|
||||
<p>MapsWithMe Android API (hereinafter referred to as <em>"API Library"</em> or just <em>"library"</em>)
|
||||
provides interface for client application to perform next tasks:</p>
|
||||
|
||||
<ul>
|
||||
<li>Show one or more points on offline map of <a href="http://mapswith.me/" title="MapsWithMe">MapsWithMe Application</a></li>
|
||||
<li>Show one or more points on offline map of <a href="http://maps.me/" title="MAPS.ME">MapsWithMe Application</a></li>
|
||||
<li>Come back to the client application after selecting specific point on the map, by sending <a href="http://developer.android.com/reference/android/app/PendingIntent.html" title="PendingIntent">PendingIntent</a> with point data when user asks for more information by pressing "More Info" button in MapsWithMe Application</li>
|
||||
<li>Map screen branding : your application's icon and name (or custom title) will be placed at the top.</li>
|
||||
</ul>
|
||||
|
@ -140,16 +140,12 @@ void handleIntent(Intent intent)
|
|||
|
||||
<h4>Which versions of MapsWithMe support API calls?</h4>
|
||||
|
||||
<p>Both <em>Lite</em> and <em>Pro</em> versions since 2.4.0 and above support API calls.</p>
|
||||
<p>All versions since 2.4.0 and above support API calls.</p>
|
||||
|
||||
<h4>What will happen if I call for <code>MapsWithMeApi.showPoint()</code> but MapsWithMe application is not installed?</h4>
|
||||
|
||||
<p>Nothing serious. API library will show simple dialog with gentle offer to download MapsWithMe. You can see how it looks like below. <img src="site/images/dlg.png" alt="Please install us"></p>
|
||||
|
||||
<h4>If user has both <em>Lite</em> and <em>Pro</em> versions which one will be called?</h4>
|
||||
|
||||
<p>MapsWithMe Pro will serve your request in the case if both <em>Lite</em> and <em>Pro</em> versions installed. </p>
|
||||
|
||||
<h2>Sample Code and Application</h2>
|
||||
|
||||
<ul>
|
||||
|
@ -159,7 +155,7 @@ void handleIntent(Intent intent)
|
|||
|
||||
<h2>Support</h2>
|
||||
|
||||
<p>If you have any questions please email to <a href="mailto:api@mapswith.me" title="MapsWithMe Support Contact">api@mapswith.me</a>.</p>
|
||||
<p>If you have any questions please email to <a href="mailto:api@maps.me" title="MAPS.ME Support Contact">api@mapswith.me</a>.</p>
|
||||
|
||||
<hr>
|
||||
|
||||
|
|
11
README.md
11
README.md
|
@ -2,7 +2,7 @@
|
|||
|
||||
## Introduction
|
||||
|
||||
NOTE: We have changed the name of our maps from MapsWithMe to maps.me, but left all references below unchanged.
|
||||
NOTE: We have changed the name of our maps from MapsWithMe to MAPS.ME, but left all references below unchanged.
|
||||
|
||||
MapsWithMe Android API (hereinafter referred to as *"API Library"* or just *"library"*)
|
||||
provides interface for client application to perform next tasks:
|
||||
|
@ -130,14 +130,11 @@ your application when user press "More Info" button :
|
|||
`MapsWithMeApi.isMapsWithMeInstalled(Context)` will return `true` if user has *Lite* or *Pro* version that supports API call installed.
|
||||
|
||||
#### Which versions of MapsWithMe support API calls?
|
||||
Both *Lite* and *Pro* versions since 2.4.0 and above support API calls.
|
||||
All versions since 2.4.0 and above support API calls.
|
||||
|
||||
#### What will happen if I call for `MapsWithMeApi.showPoint()` but MapsWithMe application is not installed?
|
||||
Nothing serious. API library will show simple dialog with gentle offer to download MapsWithMe. You can see how it looks like below. 
|
||||
|
||||
#### If user has both *Lite* and *Pro* versions which one will be called?
|
||||
MapsWithMe Pro will serve your request in the case if both *Lite* and *Pro* versions installed.
|
||||
|
||||
## Sample Code and Application
|
||||
|
||||
* [Sample Application at Google Play][linkSampleGooglePlay]
|
||||
|
@ -158,12 +155,12 @@ Redistribution and use in source and binary forms, with or without modification,
|
|||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
[linkMwm]: http://mapswith.me/ "MapsWithMe"
|
||||
[linkMwm]: http://maps.me/ "MAPS.ME"
|
||||
[linkPIntent]: http://developer.android.com/reference/android/app/PendingIntent.html "PendingIntent"
|
||||
[linkRepo]: https://github.com/mapswithme/api-android "GitHub Repository"
|
||||
[linkLibProj]: http://developer.android.com/tools/projects/index.html#LibraryProjects "Android Library Project"
|
||||
[linkIntents]: http://developer.android.com/guide/components/intents-filters.html "Intents and Intent Filters"
|
||||
[linkSupport]: mailto:api@mapswith.me "MapsWithMe Support Contact"
|
||||
[linkSupport]: mailto:api@maps.me "MAPS.ME Support Contact"
|
||||
[linkApiClass]: lib/src/com/mapswithme/maps/api/MapsWithMeApi.java "MapsWithMeApi.java"
|
||||
[linkPointClass]: lib/src/com/mapswithme/maps/api/MWMPoint.java "MWMPoint.java"
|
||||
[linkRespClass]: lib/src/com/mapswithme/maps/api/MWMResponse.java "MWMResponse.java"
|
||||
|
|
Loading…
Add table
Reference in a new issue