I see, that makes sense.
I'm happy for fully understanding.
Thanks again!
On 10月6日, 午後5:18, "Enoch Lau (Google Employee)"
wrote:
> That's right. When you install the event listener before the bindTo,
> ordinarily, the event listener will be triggered at the time you do the
> bindTo. To avoid that
That's right. When you install the event listener before the bindTo,
ordinarily, the event listener will be triggered at the time you do the
bindTo. To avoid that, you can specify noNotify, which causes the event
listener to be not triggered when you call bindTo.
Enoch
--
You received this me
Oops, I forgot. Thank you, Enoch.
On 10月6日, 午後5:07, "Masashi.K" wrote:
> Ok, I finally understand.
> -
> var mvcObject1 = new google.maps.MVCObject();
> mvcObject1.set("visible", true);
>
> var mvcObject2 = new google.maps.MVCObject();
> mvcObject2.visible_chan
Ok, I finally understand.
-
var mvcObject1 = new google.maps.MVCObject();
mvcObject1.set("visible", true);
var mvcObject2 = new google.maps.MVCObject();
mvcObject2.visible_changed = function(){
alert("visible_changed");
};
mvcObject2.bindTo("visible", mv
I see.
I've understand the meaning, but I can not understand how to use it.
Could you tell me any snippet?
(I like MVCObject class because it's useful)
On 10月6日, 午後3:26, "Enoch Lau (Google Employee)"
wrote:
> The noNotify argument is to specify that you don't want to be notified on *
> bind*, no
The noNotify argument is to specify that you don't want to be notified on *
bind*, not that you don't ever want to be notified.
Enoch
--
You received this message because you are subscribed to the Google Groups
"Google Maps JavaScript API v3" group.
To view this discussion on the web visit
htt