Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm sorry to ask this but I've looked everywhere, and cant follow this.
I'm trying to re-work a v2 google maps example to make it go in v3. I have a set of 'end points' within a driving distance of a central point I want to draw a polygon around. Tese are written to an array (there are three in the code that should work: driveMarkersArray - the current one, or drivePolyPoints or markersArray) Within the function process1direction(from,to) that does this they are certainly there, (although interestingly the firebug console reports them at the end, after all the processing is done?) BUT when then processed in a different function draw_DrivePolygon() to draw the polygon, array appears empty. Is this just declarations (I've checked a a lot) or something to do with the asynchronous query to find the driving directions?

share|improve this question
3  
could you please reduce the code to the relevant bit – Asad Jan 1 at 18:48
2  
You just copy pasted your whole program there. You will get better answers if you produce a minimal example. In fact, you might even solve it yourself by doing that. – missingno Jan 1 at 18:49
4  
I went thoroughly through your code, and in line 324, there is... no just kidding, I didn't go through your code. :P – Šime Vidas Jan 1 at 18:51
@Charlie neither is a full listing of a program. – bvukelic Jan 1 at 18:57
@tonygoodwin: What others mean is, you need to actually produce an example which demonstrates the problem using minimum amount of code for the purpose. EDIT: And also, it stands to reason that you will better understand the problem by doing this, and perhaps even solve it on your own. – bvukelic Jan 1 at 19:37
show 6 more comments

closed as too localized by lc., dev-null-dweller, Mario, Palash Mondal, Anoop Vaidya Jan 2 at 9:54

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

In JavaScript Variable has its scope function level. Not block level.

Have a look here for variable scope in JavaScript

javascript-variable-scope

Variable scope and the var keyword.

share|improve this answer
Thank you, could you help me by indicating how to change the variable to block level? I've looked at the examples, and think I've declared them globally. – tony goodwin Jan 1 at 20:18

Not the answer you're looking for? Browse other questions tagged or ask your own question.