How to controll Gmaps in ZK MVVMHow do I efficiently iterate over each entry in a Java Map?How do I call one constructor from another in Java?How do I read / convert an InputStream into a String in Java?How do I generate random integers within a specific range in Java?How do I determine whether an array contains a particular value in Java?How do I convert a String to an int in Java?How do I fix 'android.os.NetworkOnMainThreadException'?How to dynamically change the centre of a google maps without erasing markers?Using String parameters from <body> in <script>google map set zoom dynamically avoiding polygons
Why do companies pay fixed dividends instead of fluid ones?
How to create numeronyms in bash
Why wasn't Captain America eating in the end of The Avengers?
Can an employer be forced to allow an employee to bring a gun to work (Washington State)?
Z80 CPU address lines not stable
Auto-Styling QGIS vector layers symbology
Authentication versus Authorisation
What is the most life you can have at the end of your first turn with only three cards?
Trading stock more quickly vs. holding it
Kitchen rewire gone wrong
What is the history of the Eldritch Knight as a class/character option?
Why are there two King of Diamonds entries for the Curse of Strahd tarokka card readings?
Why is Ian Blackford allowed to speak in the Commons while having crossed the line?
Ideas on how to fix a void at the bottom edge of my concrete steps?
Busted my bike hub & derailleur (I think) - how bad is it?
Why is reverb typically called "wet' or "drippy"?
What element, if any, would justify mining stars (financially)?
How Would Civilisations on Different Planes of a Cube Planet Interact?
Has someone with no experience at all ever taken off in a plane? Could they?
Simple n-body class in C++
Is it crucial for a UX designer to understand the principles and concepts behind Object Oriented Programming?
What are the correct pronouns for referring to someone whom I have never met in person when the gender is apparent?
Practically, how does an 'observer' collapse a wave function?
Software update on obsolete system: is it real?
How to controll Gmaps in ZK MVVM
How do I efficiently iterate over each entry in a Java Map?How do I call one constructor from another in Java?How do I read / convert an InputStream into a String in Java?How do I generate random integers within a specific range in Java?How do I determine whether an array contains a particular value in Java?How do I convert a String to an int in Java?How do I fix 'android.os.NetworkOnMainThreadException'?How to dynamically change the centre of a google maps without erasing markers?Using String parameters from <body> in <script>google map set zoom dynamically avoiding polygons
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
Please need help about integrate google map in zk using MVVM, My REfrence in MVC, the problem is how to adding marker and controll to move focus on my coordinate i've set lat lng in @Init()
and bind to Gmarker in zul but nothing happen.
Here is my ViewModel and my ZUl
java spring google-maps zk
add a comment
|
Please need help about integrate google map in zk using MVVM, My REfrence in MVC, the problem is how to adding marker and controll to move focus on my coordinate i've set lat lng in @Init()
and bind to Gmarker in zul but nothing happen.
Here is my ViewModel and my ZUl
java spring google-maps zk
1
For "nothing happen" do you mean you could not see the marker? First of all, add an attribute open=true in marker.
– barracus
Mar 29 at 8:53
sorry for late respon, here is my code :@AfterCompose public void aftercomp() gmaps=new Gmaps(); gmaps.enableBindingAnnotation(); lat=-6.206040; lng=106.818771; Gmarker marker=new Gmarker(); marker.setLat(lat); marker.setLng(lng); marker.setOpen(true); gmaps.appendChild(marker); gmaps.focus();
but still no marker appear.
– syam houng
Mar 31 at 8:10
if i am add marker in zul like this<gmaps id="gmaps" width="100%" height="500px" > <gmarker lat="@bind(item.latitude)" lng="@bind(item.longitute)" > </gmarker> </gmaps>
it working, but i want to populate marker from database
– syam houng
Mar 31 at 11:51
add a comment
|
Please need help about integrate google map in zk using MVVM, My REfrence in MVC, the problem is how to adding marker and controll to move focus on my coordinate i've set lat lng in @Init()
and bind to Gmarker in zul but nothing happen.
Here is my ViewModel and my ZUl
java spring google-maps zk
Please need help about integrate google map in zk using MVVM, My REfrence in MVC, the problem is how to adding marker and controll to move focus on my coordinate i've set lat lng in @Init()
and bind to Gmarker in zul but nothing happen.
Here is my ViewModel and my ZUl
java spring google-maps zk
java spring google-maps zk
edited Mar 28 at 21:33
syam houng
asked Mar 28 at 21:19
syam houngsyam houng
971 silver badge11 bronze badges
971 silver badge11 bronze badges
1
For "nothing happen" do you mean you could not see the marker? First of all, add an attribute open=true in marker.
– barracus
Mar 29 at 8:53
sorry for late respon, here is my code :@AfterCompose public void aftercomp() gmaps=new Gmaps(); gmaps.enableBindingAnnotation(); lat=-6.206040; lng=106.818771; Gmarker marker=new Gmarker(); marker.setLat(lat); marker.setLng(lng); marker.setOpen(true); gmaps.appendChild(marker); gmaps.focus();
but still no marker appear.
– syam houng
Mar 31 at 8:10
if i am add marker in zul like this<gmaps id="gmaps" width="100%" height="500px" > <gmarker lat="@bind(item.latitude)" lng="@bind(item.longitute)" > </gmarker> </gmaps>
it working, but i want to populate marker from database
– syam houng
Mar 31 at 11:51
add a comment
|
1
For "nothing happen" do you mean you could not see the marker? First of all, add an attribute open=true in marker.
– barracus
Mar 29 at 8:53
sorry for late respon, here is my code :@AfterCompose public void aftercomp() gmaps=new Gmaps(); gmaps.enableBindingAnnotation(); lat=-6.206040; lng=106.818771; Gmarker marker=new Gmarker(); marker.setLat(lat); marker.setLng(lng); marker.setOpen(true); gmaps.appendChild(marker); gmaps.focus();
but still no marker appear.
– syam houng
Mar 31 at 8:10
if i am add marker in zul like this<gmaps id="gmaps" width="100%" height="500px" > <gmarker lat="@bind(item.latitude)" lng="@bind(item.longitute)" > </gmarker> </gmaps>
it working, but i want to populate marker from database
– syam houng
Mar 31 at 11:51
1
1
For "nothing happen" do you mean you could not see the marker? First of all, add an attribute open=true in marker.
– barracus
Mar 29 at 8:53
For "nothing happen" do you mean you could not see the marker? First of all, add an attribute open=true in marker.
– barracus
Mar 29 at 8:53
sorry for late respon, here is my code :
@AfterCompose public void aftercomp() gmaps=new Gmaps(); gmaps.enableBindingAnnotation(); lat=-6.206040; lng=106.818771; Gmarker marker=new Gmarker(); marker.setLat(lat); marker.setLng(lng); marker.setOpen(true); gmaps.appendChild(marker); gmaps.focus();
but still no marker appear.– syam houng
Mar 31 at 8:10
sorry for late respon, here is my code :
@AfterCompose public void aftercomp() gmaps=new Gmaps(); gmaps.enableBindingAnnotation(); lat=-6.206040; lng=106.818771; Gmarker marker=new Gmarker(); marker.setLat(lat); marker.setLng(lng); marker.setOpen(true); gmaps.appendChild(marker); gmaps.focus();
but still no marker appear.– syam houng
Mar 31 at 8:10
if i am add marker in zul like this
<gmaps id="gmaps" width="100%" height="500px" > <gmarker lat="@bind(item.latitude)" lng="@bind(item.longitute)" > </gmarker> </gmaps>
it working, but i want to populate marker from database– syam houng
Mar 31 at 11:51
if i am add marker in zul like this
<gmaps id="gmaps" width="100%" height="500px" > <gmarker lat="@bind(item.latitude)" lng="@bind(item.longitute)" > </gmarker> </gmaps>
it working, but i want to populate marker from database– syam houng
Mar 31 at 11:51
add a comment
|
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55407001%2fhow-to-controll-gmaps-in-zk-mvvm%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55407001%2fhow-to-controll-gmaps-in-zk-mvvm%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
For "nothing happen" do you mean you could not see the marker? First of all, add an attribute open=true in marker.
– barracus
Mar 29 at 8:53
sorry for late respon, here is my code :
@AfterCompose public void aftercomp() gmaps=new Gmaps(); gmaps.enableBindingAnnotation(); lat=-6.206040; lng=106.818771; Gmarker marker=new Gmarker(); marker.setLat(lat); marker.setLng(lng); marker.setOpen(true); gmaps.appendChild(marker); gmaps.focus();
but still no marker appear.– syam houng
Mar 31 at 8:10
if i am add marker in zul like this
<gmaps id="gmaps" width="100%" height="500px" > <gmarker lat="@bind(item.latitude)" lng="@bind(item.longitute)" > </gmarker> </gmaps>
it working, but i want to populate marker from database– syam houng
Mar 31 at 11:51