Gpx Vector Layer Not Displayed On Server

Oct 6, 2011

I have problem rendering vector layer on map only when is viewed from server. Local all is fine.

I'm using openlayers in combination with gpx file and txt for poi loations around route.

Look my code.

Here is link on webpage: [url]

Here is link on function: [url]

So. there should be red vector line reprizenting route from gpx file, but it is not. That is problem. when viewing localy on my pc, everithing is fine and working.

View 8 Replies


ADVERTISEMENT

Upload Currently Displayed Html As A File To A Remote Web Server

Oct 16, 2010

I am developing extension which should upload currently displayed html as a file to a remote web server, unfortunatelly so far i haven't suceeded. I think this should be done through XMLHttpRequest(), but neither I know how to upload files through XMLHttpRequest nor how to convert string to file.

The HTML form that uploads a file:

But as I said i need my plugin to do it automatically and file must be made from html code.

View 5 Replies View Related

Netscape Layer Writing (layer Within Layer)??

Apr 4, 2002

Layer writing in Netscape. This is pretty straightforward >> However I'm trying to write to a <div> layer within a <div> layer.

My div:

Code:

<div id="blah">
<div id="aight">
</div>
</div>
I'm trying to write to "aight"

How should my code look?

View 3 Replies View Related

Vector Data Type (2nd Attempt)

Sep 13, 2006

A while ago I wrote a "Vector data type" script
using DOM interface to select.options.
That was a (beautiful) mind game :-) rather than
a practical thing to use.

Here is another attempt open for criticism, this
time dead serious. I really need an effective
Vector emulator for a project (as much effective
as something not implemeted in language but
emulated by means of the language itself is: a
productivity impact is imminent, the question
is to minimize it).


<html>
<head>
<title>Vector constructor</title>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<script>
function Vector(arr) {
this.$_$ = arr || new Array();
this.length = this.$_$.length;
this.add = Vector.$add;
this.remove = Vector.$remove;
this.toString = Vector.$toString;
}

Vector.$add = function(m,i) {
if (('number'!=typeof(i))||(i<0)||(i>=this.$_$.length)) {
this.$_$.push(m);
}
else {
var tmp = [m];
tmp.push(this.$_$[i]);
this.$_$.splice(i,1,tmp);
}
this.length = this.$_$.length;
}

Vector.$remove = function(i) {
var ret = this.$_$.splice(i,1)[0];
this.length = this.$_$.length;
return ret;
}

Vector.$toString = function() {
return this.$_$.toString();
}

// Create new vector and use it as a wrapper
// over Array argument:
var v = new Vector([1,2,3]);

// add(newElement, atPosition) method
// if no atPosition provided, newElement will
// be added to the top
v.add(4); // add 4 to the top

// Add 3.5 atPosition 3
// The element currently located at v[3] and all elements atop
// of it will be moved one position up
v.add(3.5, 3);

// remove(atPosition) method
// Elements currently located atop of it will be moved
// one position down
v.remove(1);

// toString method is overloaded so in string
// context it gives comma-separated vector values
alert(v); //1, 3, 3.5, 4
</script>
</head>

<body>

</body>
</html>

View 28 Replies View Related

JQuery :: Search In A Vector Variable ?

Jun 20, 2011

I have a variable that I use for an autocomplete field. I want to search the related vvalue by ID , how can i do ?

This is the code :

What I wan't to do is get the "vvvalue" value searching using ID ex :

View 2 Replies View Related

Floating Layer - While Scrolling - The Layer Flickers Continuously

Jan 30, 2009

I have created a floating layer using Javascript that remains always on top of page on scrolling.Issue is,at some point while scrolling,the layer flickers continuously.

The html page is as follows:

Many common software systems, JavaScript has a history of security problems. Many of these problems could allow a person with malevolent intent to steal sensitive information from a visitor. The number and type of such holes in security vary among browsers and operating system versions. Most JavaScript security holes have been caught and fixed, but new ones are being discovered all the time. For a list of current security holes check out your browser's and operating system's Web pages. As a Web site author, it is your responsibility to keep up-to-date on the current status of known security holes in the applications you create.

Signing Scripts. In Chapter 11, I explained that JavaScript does not provide the ability to directly access files on the client computer. This can be a very large hurdle to overcome if you're trying to upload a file to a server from the client computer. Fortunately, file uploading is one of many functional enhancements that signed scripts provide. Signed scripts are specially packaged scripts that have been verified and signed to be correct and non-threatening. These scripts have additional rights on the client computer that allow a programmer to do many things that he wouldn't otherwise be able to.

With the introduction of Netscape 4.0, a new security model was put in place that would allow digitally signed scripts to bypass some of the restrictions that had previously been placed on them. A signed script can request expanded privileges from the visitor and, with the visitor's permission, gain access to restricted data. A signed script requests these additional permissions through LiveConnect, which allows your JavaScript code to communicate with the Java Capabilities API. The security model allows JavaScript to access certain classes in Java in order to extend its functionality while still maintaining tight security for the client.

A digital signature is a fingerprint of the original programmer, and it allows the security model of the browser to detect where (or from whom) it originated. A script signer can be a person or an organization. By signing a script, you acknowledge yourself as the author and accept responsibility for the program's actions. A signed script contains a cryptographic checksum, which is just a special value that ensures the signed script has not been changed. When a digital signature is detected, you are assured that the code has not been tampered with since the programmer signed it.

Once you finish writing a script, you can use the Netscape Signing Tool to digitally sign it. Signing a script does the following:

Unambiguously assigns ownership of the script to a person or organization.

Allows an HTML page to use multiple signed scripts.

Places the signed script into a Java Archive (JAR) file.

Places the source of the script in the JAR file.

Once a user confirms the origin of the script and is assured that it has not been tampered with since its signing, he or she can then decide whether to grant the privileges requested by the script based on the validated identity of the certificate owner and validated integrity of the script.

JAVASCRIPT FILE IS AS FOLLOWS:

AND CSS FILE IS AS FOLLOWS:

At some point while scrolling,the div 'movable' flickers continuously,while at some other point,it is perfectly stable.

View 11 Replies View Related

Vector And Magnitude - Two Points P1(30, 20) And P2(30, 221) And The Parametric Equation

Nov 22, 2011

I can't figure out this math problem. I have two points p1(30, 20) and p2(30, 221) and the parametric equation of the vector is (x-30)/(30-30)=(y-20)/(20-221)=t x=30, y=20-201*t

I'm thinking t is the magnitude or the distance. For a point P which is 10 pixels away from p1 on the vector, x=30, y=20-201*-10 (should be around -0.85) which is not the right P i'm looking for. Where am i doing wrong?

View 3 Replies View Related

XMLHttpRequest: Script Works To Request XML File On Server But Not On External Server

Oct 2, 2010

I have the following JavaScript (see below). The script requests an XML file from the server and displays it on the page.

The script works fine when the requested XML file is stored on the same server as the script.

The problem is when I try requesting an XML file from an external server such as the National Weather Service. I get an error. If I take the XML file from the National Weather Service and save it to my server it works. Why can't I use my script to request XML files stored on external servers?

Javascript Code

window.onload = initAll;
var xhr = false;
function initAll() {
document.getElementById("makeTextRequest").onclick = getNewFile;

[Code]....

View 8 Replies View Related

AJAX :: Cross-domain Calls - Loaded From One Server Into A Website On Another Server

Mar 11, 2010

I'm trying to write a script that will be loaded from one server into a website on another server. This script is trying to talk (ajax) to the server that it comes from but I'm getting "Access Denied" errors. I'm well aware that cross-domain calls are not allowed for security reasons so my question is how does Google Analytics work because essentially thats what I'm trying to accomplish. I can embed a Google Analytics script into my website and it'll gather data and send it back to Google.

View 4 Replies View Related

AJAX :: Getting Server Date/time With No Server Side Script

Apr 19, 2010

I'd been looking for some way to get server date/time without using any server side script (such as ASP, PHP, etc).

I found this and it worked just excellent for me! I just want to share it because it wasn't easy to find.

I created a js document with code:

Code:

Now, I can use this js within a html like this:

HTML Code:

You may change your machine date/time and check both dates.

View 1 Replies View Related

Resolve Relative Server Links When HTML Source Is Not On Server

Feb 10, 2010

I would like to open an html file locally (not fetch it from a server) and somehow use javascript to fetch the relative resources from the server. One solution would be to convert all of the relative links to absolute links. I can convert the html source file anyway I wish, but ideally I would like to modify the html source as little as possible, for example insert a function that modifies the result of the src attribute. How would I go about this? Is there any trick I can use to define where the relative home is? Am I going to get into any scripting security gotchas?

View 3 Replies View Related

Saving A File On The Server W/ Js, Ie No Server Code

Dec 31, 2006

I am creating an XML document on my page with javascript. My question
is, is it possible to save that xml file on the server (I have write
permissions) only using javascript, ie no server code? This task would
be trivial using server code, but I was wondering if I can do it all
with client code and post backs? Well, any input?

View 1 Replies View Related

Server To Server Connection (with Clients)?

Dec 7, 2010

I already have a server connected to clients, clients send msgs and it echoes back to all of them and now i want when a client sends a msg it echoes on his server and the other server too .. so when any of the clients on any of the servers sends a msg it is broadcasted all over the servers to all clients

[Code]...

View 1 Replies View Related

Events - Add Server Control To Custom Webcontrol That Fires Function And A Server Side Function?

Jun 24, 2010

In ASP.Net, I am trying to create a WebControl. In this control, I have RenderControl method overridden with my html controls.

protected override void RenderContents(HtmlTextWriter output)
{
output.Write(@"<table><tr><td>");

[code]....

How can I make the button call the click event so that the server side method btnExecute_Click() can be called? Also, this button calls a javascript function before server side even.

View 5 Replies View Related

Fading A Layer. Is This Possible?

Jul 23, 2005

I am trying to make a banner the size of the with of my screeen, in
a layer.

BUt I also want to fade it to a complete transperency to reveal the contents
of what's behind it (my page ofcourse) and possible close or hide the faded
layer.

I've seen stuff like that happen in a flash everonment. I was thinking about
using a transition at first to go from one page to another with an
introductory page.

But I rather have everything on one page and just fade the introdutory layer
into the page. Is that too much work for jscript?

View 2 Replies View Related

Onmouseout + Layer

Jul 23, 2005

I have a strange behaviour when applying onmouseout to a layer. it is
not trigged when the pointer goes out of the _layer_ but when it goes
off the _text within_ the layer.

View 1 Replies View Related

Layer At Bottom

Jul 23, 2005

I want to create a layer that 100% wide, 200 px high and stays at the
bottom of the screen, even when the page is scrolled, how do I do this?
I have seen it on websites but can't find any example code ...

View 28 Replies View Related

Layer Print

Jul 19, 2006

Can someone please tell me how to print a single layer?

View 3 Replies View Related

NN 4.0+ I/layer Self-awareness

Jul 20, 2005

I have written a javascript routine that populates a parent document
with a series of <iframe>s. Each <iframe> receives its contents from a
series of separate smaller HTML files. Of course my NN 4.8 browser
doesn't deal well with the <iframe> so I wrapped the code that generates
the <iframe> in <ilayer> tags. NN now recognizes the contents.

However within each of the 'content' files I have another javascript
routine that basically displays the file name (via document.URL &
document.write) of the content file. My IE 5.5 & Mozilla 1.5
understands this perfectly. However my NN responds to the document.URL
with the wrapper/parent document's URL, not it's own unique file name.

I've named/ID'd the iframes & ilayers. If the document.URL fails I can
still make use of the ilayer ID but I need to know the index into the
layers array. I can hard-code a index value into the
document.layers[x].name but given that the position of the particular
content file is dynamic within the parent, the index is going to be
wrong 9 out of 10 times. There doesn't seem to any way for an i/layer
to know who it is Code:

View 1 Replies View Related

Scrolling Layer...

Apr 2, 2005

I want a scrolling JS layer (not CSS) am trying to fit it into an already existing site design which the client doesn't want to change. It works fine when i try it on a new page but the moment I put it into my actual page where it has to fit into a particular are (I used the overflow: hidden it doesn't behave!!

View 13 Replies View Related

Changing The Content Of A Layer

Jul 23, 2005

I've got a web page which uses lots of divs to position the content of the
page and I'm using a nice javascript to alter the css of a table of links.
The thing is I don't want the table of links to point to an external site
but to calla function which will replace the content of a layer... perhaps
it's be better if I showed you the code:

View 2 Replies View Related

Refering Layer In New Window

Jul 23, 2005

I am using javascript to open a new window like this:

printpreview=window.open('printview.php','printpre v','width=600,height=600');

The new window has a layer called preview:

<div id="preview"></div>

I am now trying to write to that layer using innerHTML = "blah bla";

How do I refer to that layer?

View 6 Replies View Related

Layer Transparent In Web Page

Sep 27, 2005

I have an image on a web page within a css layer:

<DIV ID=MyLayer
STYLE = "position: absolute;top:68px; left:563px;
width:640px;height:480px;">
<IMG src="ReportImageBox_12.54.52.png" width=640 height=480></IMG>
</DIV>

I need that the parts of this layer which have a certain color
(for instance "white") be rendered transparent.

My question. Is it possible to have a simple javascript function
to incorporate in the web page which does this?

View 16 Replies View Related

Layer Ontop Of Frames

Feb 21, 2006

I was wondering if it was possible (and if so how) to put a layer ontop
of frames. What I mean is that I would be able to put anything,
including tables ontop of frames so that it could go ontop of two
frames at once, independent of everything else.

Also if it is possible, how would I make it stay still, evenwhen the
page is scrolled... like so that it doesn't even giggle or anything it
stays fixed..

Also, on another subject how would i make it appear next to the top
right hand corner of a cell in a table?

View 2 Replies View Related

Need Javascript To Show A Layer

Jul 20, 2005

Can someone help me figure out how to show a hidden layer *ONLY* if the
browser is IE for windows? I want it to remain hidden for everything else,
Netscape, Opera, Mozilla and anything for Mac. I'm not having much luck
out here.

View 4 Replies View Related

Populating A Dymanic DIV Layer?

Mar 31, 2009

this is driving me nuts. I'm not new to programming, except that I've been avoiding Javascript for long time and now it's biting me back.

I have form in which I have among other element a series of checkboxes. These have different id, and values but same name attributes. These attributes are populated with good old ASP spaghetti code.

When I check the box, I want a Div tag called "floatleyer" to populate with a duplicate checkbox and it's value ( a string). So now we have pair of check boxes one the page and a matching one in the div area. If you un-check either box of the matching pair the other member of the given pair gets un-checked as well. In addition, the box and value string from the floatleyer is completely removed.

[Code]...

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved