Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
marker
- Page 1
marker interface in Design Pattern?
Programming
Software Development
14 Years Ago
by eman 22
I need some one explain to me
marker
interface and give to me an example in java Thanks,
Re: marker interface in Design Pattern?
Programming
Software Development
14 Years Ago
by masijade
A "
marker
" interface is an interface with no methods and no variables and simply used to "mark" a Class. I don't think an example should be necessary.
move marker smoothly
Programming
Web Development
12 Years Ago
by trektrak
…var markersArray = []; function myFunction() { setInterval(function(){
marker
()},5000); } function initialize() { var myLatlng =…: user}); infowindow.open(map,
marker
); }); markersArray.push(
marker
); return
marker
; } // Removes the overlays from…
Google Maps click to add marker
Programming
Web Development
13 Years Ago
by pjh1985
….OK) { map.setCenter(results[0].geometry.location); var
marker
= new google.maps.
Marker
({ map: map, position: results[0].geometry.location });… google.maps.Point(24.0, 24.0) ); var
marker
= new google.maps.
Marker
({ position: point, map: this.map, icon: image…
Re: how to center google map on marker
Programming
Web Development
11 Years Ago
by johnef_sh
…quot;click", function(event) {
marker
= new google.maps.
Marker
({ position: event.latLng, map: map…var icon = customIcons[type] || {}; var
marker
= new google.maps.
Marker
({ map: map, position: point, icon: icon…
Create circle around marker on google maps
Programming
Mobile Development
9 Years Ago
by Stefce
…animateCamera(CameraUpdateFactory.newLatLng(latLng)); // Placing a
marker
on the touched position mMap.addMarker(markerOptions); …//Create circle around the
marker
Circle circle = mMap.addCircle(new CircleOptions()…
How to create custom marker with numbered label?
Programming
Web Development
10 Years Ago
by sanjay_7
…0; i < locations.length; i++) {
marker
= new google.maps.
Marker
({ position: new google.maps.LatLng(locations[i][1… icon:image //opacity: .5 }); google.maps.event.addListener(
marker
, 'click', function() { document.getElementById('infobox1').style.display="…
update google map marker every 2 second form mysql using ajax
Programming
Web Development
10 Years Ago
by decongh
…; " + addressDetails[1] );
marker
= new google.maps.
Marker
({ map: map, position: lat, content… addressDetails[0] }); markersArray.push(
marker
); google.maps.event.addListener(
marker
, 'click', function () {…
Re: how to center google map on marker
Programming
Web Development
11 Years Ago
by Tpojka
…parliament = new google.maps.LatLng(59.327383, 18.06747); var
marker
; var map; function initialize() { var mapOptions = { zoom:….maps.Map(document.getElementById('map-canvas'), mapOptions);
marker
= new google.maps.
Marker
({ map:map, draggable:true, animation: google.…
Google Maps API Marker Centered
Programming
Web Development
10 Years Ago
by dlmagers
…(results) { var addressLatLng = results[0].geometry.location; var
marker
= new google.maps.
Marker
({ position: addressLatLng, map: map }); }); } }); });… type="button" value="Add
Marker
" id="add_marker"> …
Google maps marker delete
Programming
Web Development
13 Years Ago
by mcwebalizer
… move, but how do I can make deletion option for
marker
? And how do I can make automatic route creator from…', function(event) { addMarker(event.latLng); }); } function addMarker(location) {
marker
= new google.maps.
Marker
({ position: location, map: map, draggable: true, animation: google.maps…
Re: how to center google map on marker
Programming
Web Development
11 Years Ago
by johnef_sh
….maps.LatLng(30.0599153,31.2620199,13)||map.setCenter(
marker
.getPosition()), zoom: 13, mapTypeId: 'roadmap' });…address; var icon = customIcons[type] || {}; var
marker
= new google.maps.
Marker
({ map: map, position: point, icon: icon.icon…
Re: Google maps marker delete
Programming
Web Development
13 Years Ago
by Airshow
Mcwebalizer, [CODE]
marker
.setMap(null); [/CODE] [iCODE]
marker
[/iCODE] still exists in javascript but is no loner displayed. To redisplay [iCODE]
marker
[/iCODE] on [iCODE]myMap[/iCODE]: [CODE]
marker
.setMap(myMap); [/CODE] [B]Airshow[/B]
Re: How to add marker to a location on google map dynamically
Programming
Web Development
12 Years Ago
by AleMonteiro
…;, "px") ); var
marker
= new google.maps.
Marker
({ position: coords, map: map, …event.addListener(
marker
, 'click', function (infowindow,
marker
) { return function () { infowindow.open(map,
marker
); }; }(infowindow,
marker
) ); …
Re: How to create custom marker with numbered label?
Programming
Web Development
10 Years Ago
by pritaeas
> number as a label in
marker
i want to display. I don't think gmap supports this, so you need to create pins for every number, either statically or dynamically.
MS Chart - Marker Problem
Programming
Software Development
14 Years Ago
by pankaj.garg
… in the chart. I am using following code for adding
marker
- with mschart1.plot.seriescollection.item(3) .SeriesMarker.Auto = False .DataPoints….Item(-1).
Marker
.Visible = True .DataPoints.Item(-1).
Marker
.Size = 60 .DataPoints.Item(-1).
Marker
.Style = VtMarkerStyleX By using above…
How to add a Red balloons marker in this google map api?
Programming
Web Development
14 Years Ago
by youlichika
… click point information. But how to add a Red balloons
marker
in the click point? Then I click in the other… point, the first Red balloons
marker
will move to the new point.( just click for move… the
marker
, not drag the
marker
). Thanks. [CODE]<!-- You are free to copy…
Custom Marker on map
Programming
Web Development
14 Years Ago
by karthik_ppts
… google map in my application. But it displays default
marker
. Whats going wrong with this code? [CODE=javascript] var icon = … = new GPoint(5, 1); icon.image = 'images/car_blue.png'; var
marker
= new GMarker(point, icon); map.addOverlay…
Updating Map Marker Automatically
Programming
Web Development
12 Years Ago
by trektrak
…({ content: info, maxWidth: 300 }); google.maps.event.addListener(
marker
, "click", function() { if (currentPopup != null…) { currentPopup.close(); currentPopup = null; } popup.open(map,
marker
); currentPopup = popup; }); google.maps.event.addListener(popup, "closeclick…
Change marker on html element hover
Programming
Web Development
9 Years Ago
by tibor.marias
I would like to change the icon of a
marker
while hovering on a HTML element. My markers are generated ….png' ); I would like to change the '
marker
-green.png' to '
marker
-blue.png' while hovering a DIV. Could you tell me…
Re: Custom Marker on map
Programming
Web Development
14 Years Ago
by karthik_ppts
…); new_icon.infoWindowAnchor = new GPoint(5,1) ; var
marker
= new GMarker(point, new_icon); map.addOverlay(
marker
); [/CODE][/QUOTE] Yes vibhadevit, I have changed… image is also available in the given path. But default
marker
only displayed. There is no error in 'Error Console' too…
Re: Google Maps API Marker Centered
Programming
Web Development
10 Years Ago
by almostbob
using Chrome, IE10, firefox, safari, the version in the op didnt centre on b2n 3p1 Canada, the
marker
appears screen right
Q about Files, EOF, reading marker... help
Programming
Software Development
16 Years Ago
by ecullenlvr
…loop. The outer loop should terminate when the EOF
marker
is encountered) [B]I understand everything except how… 3. Write a program that reads, moves the reading
marker
, and displays every second character in this file: abcdefghijklmnopqrstuvwxyz. …]I do not understand how to get the reading
marker
to pick out those characters.[/B] Thats it.…
Re: Custom Marker on map
Programming
Web Development
14 Years Ago
by vibhaJ
… GPoint(6, 20); new_icon.infoWindowAnchor = new GPoint(5,1) ; var
marker
= new GMarker(point, new_icon); map.addOverlay…
Re: Custom Marker on map
Programming
Web Development
14 Years Ago
by vibhaJ
… GPoint(6, 20); new_icon.infoWindowAnchor = new GPoint(5,1) ; var
marker
= new GMarker(new GLatLng(23.005, 72.5959), new_icon); map….addOverlay(
marker
); } } </script> </head> <body onload="…
How to add marker to a location on google map dynamically
Programming
Web Development
12 Years Ago
by Jessfly
… it can't mark the place. I need a
marker
, tried some codes posted on this forum, but they…GeocoderStatus.OK) { map.setCenter(results[0].geometry.location); var
marker
= new google.maps.
Marker
({ map: map, position: results[0].geometry.location }); …
Re: Change marker on html element hover
Programming
Web Development
9 Years Ago
by broj1
…ofsomeclass { background-color: #FFFFFF background-image: url("some/location/
marker
-green.png"); background-repeat: no-repeat; background-position: letf…class: div.ofsomeclass:hover { background-image: url("some/location/
marker
-blue.png"); } Should work OK in modern browsers (…
Application is crashing on marker click
Programming
Mobile Development
9 Years Ago
by Stefce
…` it works well till i click the
marker
second time the application crashes here is the…setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener() { @Override public boolean onMarkerClick(
Marker
marker
) { builder.setTitle("Set radius in meters:"…
how to add marker in google map using php ?
Programming
Web Development
14 Years Ago
by rutaba
i want to add
marker
in the google map embedded with my php site? and want to show information abt that
marker
? kindly can someone help me how can i do that usig google maps? waiting for reply thanx
how to center google map on marker
Programming
Web Development
11 Years Ago
by johnef_sh
… me but I need to center google map on the
marker
. here is the code that center the map and make….0599153,31.2620199,13),` to be dynamic centered by the
marker
thanks
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC