Open
Bug 1116505
Opened 10 years ago
Updated 3 years ago
Canvas drawing issue with google.maps.Circle() on a Wiko Cink Slim (PowerVR SGX 531)
Categories
(Core :: Graphics, defect)
Tracking
()
UNCONFIRMED
People
(Reporter: bugzilla, Unassigned)
Details
Attachments
(1 file)
|
317.22 KB,
image/jpeg
|
Details |
User Agent: Mozilla/5.0 (Windows NT 5.1; rv:16.0) Gecko/20100101 Firefox/16.0
Build ID: 20121024073032
Steps to reproduce:
test here :
http://jginformatique.fr/map/index.htm
https://developers.google.com/maps/documentation/javascript/examples/circle-simple
source code test
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<script>
function initialize() {
var mapOptions = {
zoom: 4,
center: new google.maps.LatLng(37.09024, -95.712891),
mapTypeId: google.maps.MapTypeId.TERRAIN
};
var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
var circle = new google.maps.Circle({
strokeColor: '#FF0000',
strokeOpacity: 0.8,
strokeWeight: 2,
fillColor: '#FF0000',
fillOpacity: 0.35,
map: map,
center: new google.maps.LatLng(40.714352, -74.005973),
radius: 1000000
});
map.setCenter( new google.maps.LatLng(40.714352, -74.005973) );
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map-canvas"></div>
</body>
</html>
Actual results:
wrong visual display circle in googlem (see Attached file "android-firefox.jpg")
Expected results:
see Attached file "android-firefox.jpg"
| Reporter | ||
Updated•10 years ago
|
Severity: normal → major
OS: Windows XP → Android
Hardware: x86 → All
Comment 1•10 years ago
|
||
I cannot reproduce this on a Nexus 5 or a Galaxy S 5. What GPU and Android version? CPU-Z from the play store can display this info
Severity: major → minor
| Reporter | ||
Comment 2•10 years ago
|
||
This bug is visible only android PHONE (NOT tablet)
| Reporter | ||
Comment 3•10 years ago
|
||
phones : Wiko Cink Slim
android : version 4.1.1
Firefox : version <= 34.0.1
| Reporter | ||
Comment 4•10 years ago
|
||
cpu-z is excellent, thanks
GPU : MediaTek MT6577 1,00 Ghz
core : 2
architecture : 2x ARM Cortex-A9
GPU renderer : PoverVR SGX 531
Updated•10 years ago
|
Component: General → Graphics
Product: Firefox for Android → Core
Summary: api googlemap function "google.maps.Circle()" display bug → Canvas drawing issue with google.maps.Circle() on a Wiko Cink Slim (PowerVR SGX 531)
Version: Firefox 34 → unspecified
Comment 5•10 years ago
|
||
I am not sure there is much we can do for PowerVR, TI stopped production of the chip and drivers years ago. Snorp?
Flags: needinfo?(snorp)
Comment 6•10 years ago
|
||
I think unless this is reproducible on a lot more than devices, we won't have the time to do much.
Flags: needinfo?(snorp)
Updated•3 years ago
|
Severity: minor → S4
You need to log in
before you can comment on or make changes to this bug.
Description
•