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
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,16 @@ APIs:
Keep in mind that the same [terms and conditions](https://developers.google.com/maps/terms) apply
to usage of the APIs when they're accessed through this library.

**Note:** The Java Client for Google Maps Services is for use in server applications. If you're building a
mobile application, you will need to introduce a proxy server to act as intermediary between your mobile
application and the [Google Maps API Web Services]. The Java Client for Google Maps Services would make an
excellent choice as the basis for such a proxy server.
## Intended usage of this library

The Java Client for Google Maps Services is designed for use in server applications. This library
is not intended for use inside of an Android app, due to the potential for loss of API keys.

If you are building a mobile application, you will need to introduce a proxy server to act as
intermediary between your mobile application and the [Google Maps API Web Services]. The Java
Client for Google Maps Services would make an excellent choice as the basis for such a proxy server.

Please see [Making the most of the Google Maps Web Service APIs] for more detail.

## Support

Expand Down Expand Up @@ -293,3 +299,4 @@ req.setCallback(new PendingResult.Callback<GeocodingResult[]>() {
[Places API]: https://developers.google.com/places/web-service/
[Time Zone API]: https://developers.google.com/maps/documentation/timezone
[Roads API]: https://developers.google.com/maps/documentation/roads
[Making the most of the Google Maps Web Service APIs]: https://maps-apis.googleblog.com/2016/09/making-most-of-google-maps-web-service.html
2 changes: 1 addition & 1 deletion src/main/java/com/google/maps/model/Size.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.google.maps.model;
package com.google.maps.model;

import com.google.maps.internal.StringJoin;
import java.io.Serializable;
Expand Down