Skip to content

Commit 0414eda

Browse files
committed
Merge branch 'masashi_dev2' of github.com:wf9a5m75/phonegap-googlemaps-plugin into masashi_dev2
2 parents 61c942a + 00dbe35 commit 0414eda

32 files changed

Lines changed: 1807 additions & 423 deletions

README.md

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Both [PhoneGap](http://phonegap.com/) and [Apache Cordova](http://cordova.apache
88

99

1010
###Example
11-
You can see an example here. [phonegap-googlemaps-plugin-v1.2.2.apk](http://goo.gl/EJ67sm)
11+
You can see an example here. [phonegap-googlemaps-plugin-v1.2.5.apk](https://googledrive.com/host/0B1ECfqTCcLE8TXlUQUJXMmJpNGs/phonegap-googlemaps-plugin-v1.2.5.apk)
1212
```bash
13-
$> adb install phonegap-googlemaps-plugin-v1.2.2.apk
13+
$> adb install phonegap-googlemaps-plugin-v1.2.5.apk
1414
```
1515

16-
![image](https://googledrive.com/host/0B1ECfqTCcLE8ZVQ1djlWNThISEE/example-v1.2.0_v2.gif)
16+
![image](https://googledrive.com/host/0B1ECfqTCcLE8ZVQ1djlWNThISEE/example-v1.2.5.gif)
1717

1818
### Join the official community
1919
New versions will be announced through the official community. Stay tuned!
@@ -22,8 +22,16 @@ New versions will be announced through the official community. Stay tuned!
2222

2323
###What's up?
2424

25-
v1.2.4
26-
- Bug fixes
25+
v1.2.5
26+
- Add : The `opacity` and `tileSize` properties has been added to `map.addTileOverlay()`
27+
- Add : Add marker animations: `DROP` and `BOUNCE`
28+
- Add : Add INDOOR_BUILDING_FOCUSED & INDOOR_LEVEL_ACTIVATED events for indoor map events.
29+
- Add plugin.google.maps.geometry.encoding.decodePath() & plugin.google.maps.geometry.encoding.encodePath()
30+
- Update : v1.2.5 uses Google Play Services version 23.
31+
- Added settings for watchdogtimer / complete rewrite of remote marker downloads
32+
- The `icon` property of the `map.addMarker()` accepts `file://` & `cdvfile://` protocol, and also the absolute file path.
33+
- Loading KML files from `file://` & `cdvfile://` protocol.
34+
- And many bugs are fixed.
2735

2836
Check out the [release notes](https://github.com/wf9a5m75/phonegap-googlemaps-plugin/wiki/Release-Notes).
2937

@@ -46,7 +54,7 @@ Check out the [release notes](https://github.com/wf9a5m75/phonegap-googlemaps-pl
4654
* [How to upgrade the Google Maps SDK for iOS to the latest version?](https://github.com/wf9a5m75/phonegap-googlemaps-plugin/wiki/How-to-upgrade-the-Google-Maps-SDK-for-iOS-to-the-latest-version%3F)
4755
* [Terms of Services](https://github.com/wf9a5m75/phonegap-googlemaps-plugin/wiki/Terms-of-Services)
4856
* [Map](https://github.com/wf9a5m75/phonegap-googlemaps-plugin/wiki/Map)
49-
* ![img](https://raw.github.com/wf9a5m75/phonegap-googlemaps-plugin/Images/screencapture/animateCamera.gif)
57+
* ![img](https://raw.github.com/wf9a5m75/phonegap-googlemaps-plugin/Images/screencapture/animateCamera.gif)
5058
* Create a map
5159
* Create a map with initialize options
5260
* Change the map type
@@ -56,7 +64,7 @@ Check out the [release notes](https://github.com/wf9a5m75/phonegap-googlemaps-pl
5664
* Get my location
5765
* Map Class Reference
5866
* [Marker](https://github.com/wf9a5m75/phonegap-googlemaps-plugin/wiki/Marker)
59-
* ![img](https://googledrive.com/host/0B1ECfqTCcLE8LUxUWmhsQmgxVVU/marker5.gif)
67+
* ![img](https://googledrive.com/host/0B1ECfqTCcLE8LUxUWmhsQmgxVVU/marker5.gif)
6068
* Add a Marker
6169
* Show InfoWindow
6270
* Add a marker with multiple line
@@ -114,14 +122,14 @@ Check out the [release notes](https://github.com/wf9a5m75/phonegap-googlemaps-pl
114122
* [Location](https://github.com/wf9a5m75/phonegap-googlemaps-plugin/wiki/Location)
115123
* Location Class Reference
116124
* [Geocoder](https://github.com/wf9a5m75/phonegap-googlemaps-plugin/wiki/Geocoder)
117-
* <img src="https://googledrive.com/host/0B1ECfqTCcLE8MU1CbUtNVUs3TEE/geocoding.gif" height="250">
125+
* <img src="https://googledrive.com/host/0B1ECfqTCcLE8MU1CbUtNVUs3TEE/geocoding.gif" height="250">
118126
* Geocoding
119127
* Reverse geocoding
120128
* Geocoder Class Reference
121129
* [BaseClass](https://github.com/wf9a5m75/phonegap-googlemaps-plugin/wiki/BaseClass)
122130
* BaseClass Reference
123131
* [External Service](https://github.com/wf9a5m75/phonegap-googlemaps-plugin/wiki/External-Service)
124-
* <img src="https://googledrive.com/host/0B1ECfqTCcLE8MU1CbUtNVUs3TEE/direction.gif" height="250">
132+
* <img src="https://googledrive.com/host/0B1ECfqTCcLE8MU1CbUtNVUs3TEE/direction.gif" height="250">
125133
* Launch the navigation application
126134

127135

example/DemoApp2/www/css/app.css

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
html, body, #map_canvas {
2+
width: 100%;
3+
height: 100%;
4+
margin: 0;
5+
padding: 0;
6+
left: 0;
7+
top: 0;
8+
}
9+
pre.prettyprint {
10+
display: block;
11+
background-color: rgba(200, 200, 200, 0.75);
12+
}
13+
button {
14+
position: fixed;
15+
border: 0 none #ffffff;
16+
background-color: #4285F4;
17+
border-radius: 3px;
18+
left: 10%;
19+
color: white;
20+
bottom: 10%;
21+
width: 80%;
22+
height: 10%;
23+
z-index: 2;
24+
font-size: 150%;
25+
}
26+
.container {
27+
position: fixed;
28+
left: 5%;
29+
top: 5%;
30+
right: 5%;
31+
background-color: rgba(255, 255, 255, .7);
32+
border:1px solid black;
33+
padding: 1%;
34+
font-size: 150%;
35+
display: inline-block;
36+
overflow: scroll;
37+
}
38+
39+
button#nextBtn {
40+
display: none;
41+
}
42+
strong {
43+
font-size: 150%;
44+
font-weight: bold;
45+
}

example/DemoApp2/www/index.html

Lines changed: 3 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -6,56 +6,14 @@
66
<title>Google Maps Plugin for Cordova</title>
77
<link rel="stylesheet" type="text/css" href="css/animate.css" />
88
<link href="css/prettify.css" type="text/css" rel="stylesheet" />
9+
<link href="css/app.css" type="text/css" rel="stylesheet" />
910
<script type="text/javascript" src="cordova.js"></script>
1011
<script type="text/javascript" src="js/prettify.js"></script>
1112
<script type="text/javascript" src="js/jquery.min.js"></script>
13+
<script type="text/javascript" src="js/jquery.fittext.js"></script>
1214
<script type="text/javascript" src="js/example.js"></script>
13-
<style type="text/css">
14-
html, body, #map_canvas {
15-
width: 100%;
16-
height: 100%;
17-
margin: 0;
18-
padding: 0;
19-
position: absolute;
20-
left: 0;
21-
top: 0;
22-
}
23-
pre.prettyprint {
24-
display: block;
25-
overflow: scroll;
26-
position: absolute;
27-
left: 2%;
28-
right: 2%;
29-
bottom: 15%;
30-
top: 20%;
31-
background-color: rgba(200, 200, 200, 0.75);
32-
}
33-
button {
34-
position: fixed;
35-
border: 0 none #ffffff;
36-
background-color: #4285F4;
37-
border-radius: 3px;
38-
left: 10%;
39-
right: 10%;
40-
height: 10%;
41-
color: white;
42-
bottom: 10%;
43-
}
44-
.container {
45-
position: fixed;
46-
left: 5%;
47-
top: 5%;
48-
bottom: 5%;
49-
right: 5%;
50-
background-color: rgba(255, 255, 255, .7);
51-
border:1px solid black;
52-
overflow: hidden;
53-
padding: 1% 1% 15% 1%;
54-
display: scroll;
55-
}
56-
</style>
5715
</head>
5816
<body>
5917
<div id="map_canvas" ></div>
6018
</body>
61-
</html>
19+
</html>

0 commit comments

Comments
 (0)