Yo! I'm aware of the problem with the demo where the markers don't really move at all. I've updated to your latest internal build 2014.2.716
I had this problem with the last build too: basically markers are in pretty much the correct place (and exactly correct a certain zoom level), but if I zoom in, they shift south, and if I zoom out, they shift north.
Here's what my code looks like:
I had this problem with the last build too: basically markers are in pretty much the correct place (and exactly correct a certain zoom level), but if I zoom in, they shift south, and if I zoom out, they shift north.
Here's what my code looks like:
01.$("#localMap").kendoMap({02. center: [lat, lng],03. zoom: 10,04. controls: {05. zoom: true06. },07. layerDefaults: {08. marker: {09. opacity: 0.7510. }11. },12. zoomEnd: function() {13. $("#localMap").data("kendoMap").center();14. },15. 16. layers: [17. {18. type: "bing",19. imagerySet: "road",20. key: "xxx"21. },22. 23. 24. {25. type: "marker",26. tooltip: {27. template: "#= marker.dataItem.name #"28. },29. shape: 'restaurant',30. dataSource: {31. data: App.restaurantVenueArray32. },33. locationField: "latlng",34. titleField: "name"35. },36. {37. type: "marker",38. tooltip: {39. template: "#= marker.dataItem.name # </br> #= marker.dataItem.phone # "40. },41. shape: 'winery',42. dataSource: {43. data: App.retailVenueArray44. },45. locationField: "latlng",46. titleField: "name"47. }48. ],49. markers: [50. {51. location: [lat, lng],52. shape: "here",53. tooltip: {54. content: "Current Location"55. }56. }57. ]58.});